fix server list endpoint url

This commit is contained in:
snepsnepsnep 2024-03-08 19:58:06 +01:00
parent c0a807194c
commit ebdb94f362

View File

@ -423,7 +423,7 @@ void ClientNetwork::start_browsing() {
Result<nlohmann::json, std::string> ClientNetwork::load_server_list() noexcept {
try {
auto list = HTTP::Get("https://backend.beammp.com/servers-list");
auto list = HTTP::Get("https://backend.beammp.com/servers-info");
if (list == "-1") {
return outcome::failure("Failed to fetch server list, see launcher log for more information.");
}