From 117f1fa5be6517d356e0427df20b968e02dedc2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=93=9D=E7=82=B9lilac?= Date: Wed, 11 Nov 2020 04:10:05 +0800 Subject: [PATCH] --- ContextMenuManager/AppString.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }