mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-06-27 08:46:20 -04:00
Bug fix: #143
This commit is contained in:
@@ -172,7 +172,7 @@ namespace LibationFileManager
|
||||
|
||||
private string getTemplate(string settingName, Templates templ)
|
||||
{
|
||||
var value = persistentDictionary.GetString(settingName).Trim();
|
||||
var value = persistentDictionary.GetString(settingName)?.Trim();
|
||||
return templ.IsValid(value) ? value : templ.DefaultTemplate;
|
||||
}
|
||||
private void setTemplate(string settingName, Templates templ, string newValue)
|
||||
|
||||
Reference in New Issue
Block a user