Skip to content

Commit

Permalink
Fix login = false error
Browse files Browse the repository at this point in the history
  • Loading branch information
leohubert authored Jan 9, 2018
1 parent 82bf8cf commit e212acb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions LauncherArma3/LauncherArma3/Arma3/launcherMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ private void launcherMain_Load(object sender, EventArgs e)
}
if (serverMaintenance == true || serverLocked == true)
refreshMaintenance();
getNotification();
if (sessionToken != null)
getNotification();
autoRefresh();

}
Expand Down Expand Up @@ -281,7 +282,8 @@ private async void autoRefresh()
{
loadServerStatus();
loadIGinfos();
getNotification();
if (sessionToken != null)
getNotification();
});
thread.Start();
}
Expand Down

0 comments on commit e212acb

Please sign in to comment.