Skip to content

Commit

Permalink
fixed installer string
Browse files Browse the repository at this point in the history
  • Loading branch information
phasephasephase committed May 14, 2024
1 parent e552a8e commit d2dc963
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion JiayiLauncher/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
private readonly Updater _updater = new();

// silly
private readonly List<string> _dontAskAgain = Strings.DontAskAgain.Split('\n').ToList();
private readonly List<string> _dontAskAgain = Strings.DontAskAgain.Split('\n')
.Where(x => !string.IsNullOrWhiteSpace(x)).ToList();

protected override async Task OnAfterRenderAsync(bool firstRender)
{
Expand Down

0 comments on commit d2dc963

Please sign in to comment.