Skip to content

Commit

Permalink
Merge pull request #186 from stayintarkov/play-fix
Browse files Browse the repository at this point in the history
Update version check for play
  • Loading branch information
Plootie authored Apr 16, 2024
2 parents 64a750c + 6e57260 commit 4ffc4f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SIT.Manager/ViewModels/PlayPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ await Dispatcher.UIThread.InvokeAsync(() =>
return;

Version SITVersion;
if (_configService.Config.SitVersion == null)
if (string.IsNullOrWhiteSpace(_configService.Config.SitVersion))
SITVersion = new();
else
SITVersion = new(_configService.Config.SitVersion);
Expand Down

0 comments on commit 4ffc4f2

Please sign in to comment.