Skip to content

Commit

Permalink
スキップしているときは設定ダイアログにも表示しない
Browse files Browse the repository at this point in the history
  • Loading branch information
Freeesia committed Apr 6, 2024
1 parent a2fd426 commit d40fb28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VdLabel/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private void UpdateChecker_UpdateAvailable(object? sender, EventArgs e)

private async void SetUpUpdateInfo()
{
if (this.updateChecker.HasUpdate && await this.configStore.LoadUpdateInfo() is { } info)
if (this.updateChecker.HasUpdate && await this.configStore.LoadUpdateInfo() is { } info && !info.Skip)
{
this.NewVersion = info.Version;
this.newVersionUrl = info.Url;
Expand Down

0 comments on commit d40fb28

Please sign in to comment.