Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

Commit

Permalink
fixed wrong link for steamapi
Browse files Browse the repository at this point in the history
  • Loading branch information
brainfoolong committed Jan 31, 2018
1 parent 68fc4db commit 4889815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/steamapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ steamapi.request = function (type, ids, callback) {
}
}
if (missingIds.length) {
request.get("https://0x.at/steamapi/api.php?action=" + type + "&ids=" + missingIds.join(","), false, function (result) {
request.get("https://scripts.0x.at/steamapi/api.php?action=" + type + "&ids=" + missingIds.join(","), false, function (result) {
if (result !== null) {
var steamData = null;
var data = JSON.parse(result);
Expand Down Expand Up @@ -123,4 +123,4 @@ steamapi.cleanup = function () {
setInterval(steamapi.cleanup, 30 * 60 * 1000);
steamapi.cleanup();

module.exports = steamapi;
module.exports = steamapi;

0 comments on commit 4889815

Please sign in to comment.