Skip to content

Commit

Permalink
set new prod URL
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoKle committed Apr 8, 2024
1 parent 4e53922 commit cf672d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/PluginConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace vacdm {
struct PluginConfig {
bool valid = true;
std::string serverUrl = "https://vacdm.vatsim-germany.org";
std::string serverUrl = "https://app.vacdm.net";
int updateCycleSeconds = 5;
COLORREF lightgreen = RGB(127, 252, 73);
COLORREF lightblue = RGB(53, 218, 235);
Expand Down
2 changes: 1 addition & 1 deletion src/config/vacdm.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SERVER_url=https://vacdm.vatsim-germany.org
SERVER_url=https://app.vacdm.net
UPDATE_RATE_SECONDS=5
COLOR_lightgreen=127,252,73
COLOR_lightblue=53,218,235
Expand Down
2 changes: 1 addition & 1 deletion src/core/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Server::Server()
m_deleteRequest(),
m_apiIsChecked(false),
m_apiIsValid(false),
m_baseUrl("https://vacdm.vatsim-germany.org"),
m_baseUrl("https://app.vacdm.net"),
m_clientIsMaster(false),
m_errorCode() {
/* configure the get request */
Expand Down

0 comments on commit cf672d8

Please sign in to comment.