Skip to content

Commit

Permalink
Render guild description list item if the description is empty (prior…
Browse files Browse the repository at this point in the history
… to first request)
  • Loading branch information
ethanmoffat committed Oct 27, 2024
1 parent 0f2969d commit fa657e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EndlessClient/Dialogs/GuildDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ private void SetupModifyState()
insertLineBreaks: false,
new List<Action> { ShowChangeDescriptionMessageBox },
_localizedStringFinder.GetString(EOResourceID.GUILD_CURRENT_DESCRIPTION),
_guildSessionProvider.GuildDescription,
string.IsNullOrEmpty(_guildSessionProvider.GuildDescription) ? " " : _guildSessionProvider.GuildDescription,
" ",
_localizedStringFinder.GetString(EOResourceID.GUILD_CLICK_HERE_TO_CHANGE_THE_DESCRIPTION)
);
Expand Down

0 comments on commit fa657e3

Please sign in to comment.