diff --git a/VdLabel/UpdateChecker.cs b/VdLabel/UpdateChecker.cs index a917e16..31e9302 100644 --- a/VdLabel/UpdateChecker.cs +++ b/VdLabel/UpdateChecker.cs @@ -116,7 +116,7 @@ private async ValueTask CheckAndDownload(CancellationToken stoppingToken) this.HasUpdate = true; } // バージョンが新しい場合は通知 - else if (new Version(updateInfo.Version) > this.version && !updateInfo.Skip && updateInfo.Path is not null) + else if (new Version(updateInfo.Version) > this.version && !updateInfo.Skip && updateInfo.Path is not null && File.Exists(updateInfo.Path)) { ShowUpdateNotification(updateInfo.Version, updateInfo.Url, updateInfo.Path, false); this.HasUpdate = true;