diff --git a/Dictionaries/names.xml b/Dictionaries/names.xml
index 5c7e2f343..119fdeeb6 100644
--- a/Dictionaries/names.xml
+++ b/Dictionaries/names.xml
@@ -371,6 +371,7 @@ This file is case sensitive.
Avery
Avodart
Axel
+ Axel Foley
Ayden
Aziz
Azkaban
diff --git a/Ocr/Latin.db b/Ocr/Latin.db
index 568a88ea9..bc5c9f6ae 100644
Binary files a/Ocr/Latin.db and b/Ocr/Latin.db differ
diff --git a/src/Forms/Ocr/VobSubOcr.cs b/src/Forms/Ocr/VobSubOcr.cs
index 37cb2ff67..b76d13db5 100644
--- a/src/Forms/Ocr/VobSubOcr.cs
+++ b/src/Forms/Ocr/VobSubOcr.cs
@@ -6646,7 +6646,7 @@ namespace Nikse.SubtitleEdit.Forms.Ocr
foreach (var ml in ModiLanguage.AllLanguages)
{
comboBoxModiLanguage.Items.Add(ml);
- if (ml.Id == _vobSubOcrSettings.LastModiLanguageId)
+ if (_vobSubOcrSettings != null && ml.Id == _vobSubOcrSettings.LastModiLanguageId)
{
comboBoxModiLanguage.SelectedIndex = comboBoxModiLanguage.Items.Count - 1;
}