mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 05:04:15 +01:00
Fix double by in mod name display
This commit is contained in:
parent
182546ee10
commit
51ce6d1038
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue