From 3b4f2562f2f44ec245e0a5e4bfab6255141ff4a9 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Thu, 18 Mar 2021 18:42:17 +0100 Subject: [PATCH] Changed DEBUG OSM auth server from IZ to official OSM dev server Signed-off-by: Alexander Borsuk --- editor/osm_auth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/osm_auth.cpp b/editor/osm_auth.cpp index 1bb9669ede..289ef8c818 100644 --- a/editor/osm_auth.cpp +++ b/editor/osm_auth.cpp @@ -77,7 +77,7 @@ OsmOAuth::OsmOAuth(string const & consumerKey, string const & consumerSecret, OsmOAuth OsmOAuth::ServerAuth() noexcept { #ifdef DEBUG - return IZServerAuth(); + return DevServerAuth(); #else return ProductionServerAuth(); #endif