Skip to content

Commit

Permalink
Append line breaks after read only mode warning in announce text
Browse files Browse the repository at this point in the history
  • Loading branch information
sudokoko committed Mar 30, 2024
1 parent e8441c1 commit 931f079
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public async Task<IActionResult> Announce()

if (ServerConfiguration.Instance.UserGeneratedContentLimits.ReadOnlyMode)
{
announceText.Insert(0, BaseLayoutStrings.ReadOnlyWarn.Translate(LocalizationManager.DefaultLang));
announceText.Insert(0, BaseLayoutStrings.ReadOnlyWarn.Translate(LocalizationManager.DefaultLang) + "\n\n");
}

#if DEBUG
Expand Down

0 comments on commit 931f079

Please sign in to comment.