Skip to content

Commit

Permalink
Fix server url variable name for prod
Browse files Browse the repository at this point in the history
  • Loading branch information
nhamonin committed Dec 13, 2024
1 parent 94b4106 commit 0e6428c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const PG_CONNECTION_STRING = isProduction ? PG_CONNECTION_STRING_PROD : PG_CONNE
const FACEIT_WEBHOOK_ID = isProduction ? FACEIT_WEBHOOK_ID_PROD : FACEIT_WEBHOOK_ID_TEST;
const host = isProduction ? HOST_PROD : HOST_TEST;
const port = isProduction ? PORT_PROD : PORT_TEST;
const SERVER_URL = `https://${host}:${port}`;
const SERVER_URL = isProduction ? 'https://faceit-helper.pro' : `https://${host}:${port}`;
const game_id = 'cs2';
const currentMapPool = [
'de_ancient',
Expand Down

0 comments on commit 0e6428c

Please sign in to comment.