Fix double by in mod name display

This commit is contained in:
Caraxi 2023-04-11 07:17:52 +09:30 committed by Ottermandias
parent 182546ee10
commit 51ce6d1038

View file

@ -176,7 +176,7 @@ public partial class ConfigWindow
}
// Author
var author = _mod.Author.IsEmpty ? string.Empty : $"by {_mod.Author}";
var author = _mod.Author.IsEmpty ? string.Empty : $"{_mod.Author}";
if( author != _modAuthor )
{
_modAuthor = author;