Fix unicode replacement
This commit is contained in:
parent
490d121db3
commit
733ca891de
2 changed files with 57 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ namespace FileManager
|
|||
var tagValue = Template;
|
||||
|
||||
foreach (var r in ParameterReplacements)
|
||||
tagValue = tagValue.Replace($"<{formatKey(r.Key)}>", r.Value.ToString());
|
||||
tagValue = tagValue.Replace($"<{formatKey(r.Key)}>", r.Value?.ToString() ?? "");
|
||||
|
||||
return tagValue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue