We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d4728 commit a498778Copy full SHA for a498778
src/index.ts
@@ -982,7 +982,6 @@ const maybeEnterGame = () => {
982
}
983
984
if (appQueryParams.ip || appQueryParams.proxy) {
985
- const waitAppConfigLoad = !appQueryParams.proxy
986
const openServerAction = () => {
987
if (appQueryParams.autoConnect && miscUiState.appConfig?.allowAutoConnect) {
988
void connect({
@@ -1003,11 +1002,7 @@ const maybeEnterGame = () => {
1003
1002
1004
1005
// showModal({ reactType: 'empty' })
1006
- if (waitAppConfigLoad) {
1007
- return waitForConfigFsLoad(openServerAction)
1008
- }
1009
- openServerAction()
1010
- return
+ return waitForConfigFsLoad(openServerAction)
1011
1012
1013
if (appQueryParams.connectPeer) {
0 commit comments