IOOBE Fix

Если в клиенте не было профилей - клиент не загружался. (Вечная загрузка)
https://hastebin.com/qesogeyutu.hs
This commit is contained in:
Yaroslavik 2018-11-21 02:13:24 +03:00 committed by GitHub
parent 3c960eb501
commit a99fa10e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -293,7 +293,8 @@ function updateProfilesList(profiles) {
index++;
});
LogHelper.debug("Load selected %d profile",settings.profile);
serverHolder.set(serverList.getChildren().get(settings.profile));
if(profiles.length > 0)
serverHolder.set(serverList.getChildren().get(settings.profile));
}
function pingServer(btn) {