Skip to content

Commit

Permalink
Merge pull request #113 from Chopper1337/update-serverlist
Browse files Browse the repository at this point in the history
Fix server list URL
  • Loading branch information
Jyben committed Jun 12, 2023
2 parents 66dd4e7 + 8b0b7b6 commit f323fb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/servers.js
Expand Up @@ -6,7 +6,7 @@ let serversList = null;
ServersService.prototype.getServersList = function () {
if (serversList === null) {
serversList = Axios({
url: `https://raw.githubusercontent.com/SteamDatabase/SteamTracking/master/Random/NetworkDatagramConfig.json`,
url: `https://api.steampowered.com/ISteamApps/GetSDRConfig/v1?appid=730`,
method: 'get'
})
}
Expand All @@ -15,4 +15,4 @@ ServersService.prototype.getServersList = function () {

}

module.exports = ServersService;
module.exports = ServersService;

0 comments on commit f323fb2

Please sign in to comment.