From ac3893d0922582da0068118ab6e1d3d5f103988c Mon Sep 17 00:00:00 2001 From: m Date: Tue, 26 Dec 2023 01:51:05 -0600 Subject: [PATCH] fix blank popup --- src/client/component/party.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/component/party.cpp b/src/client/component/party.cpp index 0ccf100b..b1dda51f 100644 --- a/src/client/component/party.cpp +++ b/src/client/component/party.cpp @@ -1144,6 +1144,8 @@ namespace party return; } + server_connection_state.base_url = info.get("sv_wwwBaseUrl"); + if (download_files(target, info, false)) { return; @@ -1151,7 +1153,6 @@ namespace party server_connection_state.motd = info.get("sv_motd"); server_connection_state.max_clients = std::stoi(info.get("sv_maxclients")); - server_connection_state.base_url = info.get("sv_wwwBaseUrl"); discord_information discord_info{}; discord_info.image = info.get("sv_discordImageUrl");