This commit is contained in:
蓝点lilac
2020-11-11 04:10:05 +08:00
parent 360c29cfa3
commit 117f1fa5be

View File

@@ -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");
}