Skip to content

Commit 41dbdb9

Browse files
committed
Disable in dev env
1 parent c8294cd commit 41dbdb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Helpers/Application/AppLifecycleHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public static async Task CheckAppUpdate()
139139
await updateService.CheckAndUpdateFilesLauncherAsync();
140140
await updateService.CheckForReleaseNotesAsync();
141141

142-
if (IsAppUpdated && updateService.AreReleaseNotesAvailable)
142+
if (AppEnvironment != AppEnvironment.Dev && IsAppUpdated && updateService.AreReleaseNotesAvailable)
143143
await Ioc.Default.GetRequiredService<ICommandManager>().OpenReleaseNotes.ExecuteAsync();
144144
}
145145

0 commit comments

Comments
 (0)