diff --git a/ContextMenuManager/AppString.cs b/ContextMenuManager/AppString.cs index 1b71a38..51f6c53 100644 --- a/ContextMenuManager/AppString.cs +++ b/ContextMenuManager/AppString.cs @@ -11,7 +11,7 @@ namespace ContextMenuManager private static string GetStringValue(string section, string key) { - string value = UserLanguage?.GetValue(section, key); + string value = UserLanguage.GetValue(section, key); if(string.IsNullOrEmpty(value)) value = DefaultLanguage.GetValue(section, key); return value.Replace("\\n", "\n"); }