mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-13 06:34:23 -04:00
Don't show update notification when launching the app for the first time
This commit is contained in:
parent
1e7b8ec83f
commit
93799eb231
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public class RootViewModel : Screen, IHandle<NotificationMessage>, IDisposable
|
|||
}
|
||||
|
||||
// App has just been updated, display changelog
|
||||
if (_settingsService.LastAppVersion != App.Version)
|
||||
if (_settingsService.LastAppVersion is not null && _settingsService.LastAppVersion != App.Version)
|
||||
{
|
||||
Notifications.Enqueue(
|
||||
$"Successfully updated to {App.Name} v{App.VersionString}",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue