From aec684cd4b60614007f3c570127d9ec388617d18 Mon Sep 17 00:00:00 2001 From: JoKeRZH429 <83122870+JoKeRZH429@users.noreply.github.com> Date: Mon, 10 Aug 2026 00:49:08 +0500 Subject: [PATCH] chore: Strip out www from strata's url on scorescreen --- .../Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp b/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp index 16ac954465e..bfb1277abd2 100644 --- a/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp +++ b/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp @@ -664,7 +664,7 @@ WindowMsgHandledType ScoreScreenSystem( GameWindow *window, UnsignedInt msg, #if defined(USE_TEST_ENV) strMatchURL.format("https://www.playgenerals.online/viewmatch?match=%" PRIu64 "&env=test", currentMatchID); #else - strMatchURL.format("https://www.strata.gamereplays.org/zh/match/%" PRIu64, currentMatchID); + strMatchURL.format("https://strata.gamereplays.org/zh/match/%" PRIu64, currentMatchID); #endif ShellExecuteA(NULL, "open", strMatchURL.str(), NULL, NULL, SW_SHOWNORMAL); } @@ -1212,7 +1212,7 @@ void initInternetMultiPlayer(void) #if defined(USE_TEST_ENV) strMatchURL.format(L"\nView match data, participants, replays, anti-cheat data: https://www.playgenerals.online/viewmatch?match=%" PRIu64 "&env=test", lobby.match_id); #else - strMatchURL.format(L"\nView match data, participants, replays, anti-cheat data: https://www.strata.gamereplays.org/zh/match/%" PRIu64, lobby.match_id); + strMatchURL.format(L"\nView match data, participants, replays, anti-cheat data: https://strata.gamereplays.org/zh/match/%" PRIu64, lobby.match_id); #endif buttonContinue->winSetText(UnicodeString(L"VIEW MATCH ONLINE"));