[traffic] Default URL

Signed-off-by: mvglasow <michael -at- vonglasow.com>
This commit is contained in:
mvglasow
2025-07-29 20:39:57 +03:00
parent 0106dc3fe5
commit dde50bd0a1
2 changed files with 4 additions and 1 deletions

View File

@@ -75,6 +75,7 @@
#include "std/target_os.hpp"
#include "defines.hpp"
#include "private.h"
#include <algorithm>
@@ -2628,7 +2629,7 @@ std::string Framework::LoadTrafficHttpUrl()
{
std::string url;
if (!settings::Get(kTrafficHttpUrlKey, url))
url = "";
url = TRAFFIC_HTTP_URL_DEFAULT;
return url;
}