diff --git a/LauncherArma3/LauncherArma3/Arma3/launcherMain.cs b/LauncherArma3/LauncherArma3/Arma3/launcherMain.cs index 802f9f75..18b5e667 100644 --- a/LauncherArma3/LauncherArma3/Arma3/launcherMain.cs +++ b/LauncherArma3/LauncherArma3/Arma3/launcherMain.cs @@ -217,7 +217,8 @@ private void launcherMain_Load(object sender, EventArgs e) } if (serverMaintenance == true || serverLocked == true) refreshMaintenance(); - getNotification(); + if (sessionToken != null) + getNotification(); autoRefresh(); } @@ -281,7 +282,8 @@ private async void autoRefresh() { loadServerStatus(); loadIGinfos(); - getNotification(); + if (sessionToken != null) + getNotification(); }); thread.Start(); }