mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-17 22:24:22 +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
|
// Author
|
||||||
var author = _mod.Author.IsEmpty ? string.Empty : $"by {_mod.Author}";
|
var author = _mod.Author.IsEmpty ? string.Empty : $"{_mod.Author}";
|
||||||
if( author != _modAuthor )
|
if( author != _modAuthor )
|
||||||
{
|
{
|
||||||
_modAuthor = author;
|
_modAuthor = author;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue