cases 1.Home button is enabled to enter internal game lobby, dissabled in internal game lobby - casinoId is 1 "casinoUrls": [ { "casinoId": "1", "url": "", "homeBtnEnabled": "1" }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] 2.Home button is enabled to enter internal game lobby, enabled in internal game lobby, goes to https://www.google.com - casinoId is 1 "casinoUrls": [ { "casinoId": "1", "url": "https://www.google.com", "homeBtnEnabled": "1" }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] 3.Home button is enabled, internal game lobby is disabled, external lobbyUrl is "https://www.google.com", goes to https://www.google.com - casinoId is 1 "lobbyEnabled": "0", "casinoUrls": [ { "casinoId": "1", "url": "", "homeBtnEnabled": "1" }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] } 4.Home button is enabled, internal game lobby is disabled, external lobbyUrl is empty, goes to https://www.google.com - casinoId is 1 "lobbyEnabled": "0", "casinoUrls": [ { "casinoId": "1", "url": "https://www.google.com", "homeBtnEnabled": "1" }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] } 5.Home button is enabled, internal game lobby is disabled, external lobbyUrl is empty, homeBtnEnabled is not present, goes to https://www.google.com - casinoId is 1, applies to all above cases to keep legacy home button behavior !that is if homeBtnEnabled is not present in config, everything is working as before this update! "lobbyEnabled": "0", "casinoUrls": [ { "casinoId": "1", "url": "https://www.google.com", }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] } 6.Home button is disabled, external lobbyUrl is empty, homeBtnEnabled is not present - casinoId is 1, this is how to hide home button before this update, will work same way as before if homeBtnEnabled is not present !that is if homeBtnEnabled is not present in config, everything is working as before this update! "lobbyEnabled": "0", "casinoUrls": [ { "casinoId": "1", "url": "" }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] } 7.Home button is disabled, lobbyEnabled value doesn't matter, external lobbyUrl value dosn't matter, casinoId is 1 ! homeBtnEnabled = "0" only matters ! SoftSwiss way to disable home button "lobbyEnabled": "0", "casinoUrls": [ { "casinoId": "1", "url": "", "homeBtnEnabled": "0" }, { "casinoId": "2", "url": "https://dev.nblgm.com/keranis72/" } ] } 8.For every other value but "0" homeBtnEnabled is ignored