Skip to content

Commit

Permalink
Use window.location.origin everywhere for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
xPaw committed Jul 14, 2024
1 parent b5e8490 commit f5e482c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions code.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
? unsafeWindow.g_strInventoryLoadURL
: typeof unsafeWindow.g_strProfileURL !== 'undefined' && unsafeWindow.g_strProfileURL != null
? unsafeWindow.g_strProfileURL + '/inventory/json/'
: 'https://steamcommunity.com/my/inventory/json/',
: window.location.origin + '/my/inventory/json/',
isLoggedIn ? unsafeWindow.g_rgWalletInfo : undefined);

var currencyId =
Expand Down Expand Up @@ -415,7 +415,7 @@
var itemId = item.assetid || item.id;
$.ajax({
type: "POST",
url: 'https://steamcommunity.com/market/sellitem/',
url: window.location.origin + '/market/sellitem/',
data: {
sessionid: sessionId,
appid: item.appid,
Expand Down Expand Up @@ -630,8 +630,8 @@

// Get the current price history for an item.
SteamMarket.prototype.getCurrentPriceHistory = function(appid, market_name, callback) {
var url = window.location.protocol +
'//steamcommunity.com/market/pricehistory/?appid=' +
var url = window.location.origin +
'/market/pricehistory/?appid=' +
appid +
'&market_hash_name=' +
market_name;
Expand Down Expand Up @@ -699,7 +699,7 @@

// Get the item name id from a market item.
SteamMarket.prototype.getCurrentMarketItemNameId = function(appid, market_name, callback) {
var url = window.location.protocol + '//steamcommunity.com/market/listings/' + appid + '/' + market_name;
var url = window.location.origin + '/market/listings/' + appid + '/' + market_name;
$.get(url,
function(page) {
var matches = /Market_LoadOrderSpread\( (\d+) \);/.exec(page);
Expand Down Expand Up @@ -782,8 +782,8 @@
callback(ERROR_FAILED);
return;
}
var url = window.location.protocol +
'//steamcommunity.com/market/itemordershistogram?country=' +
var url = window.location.origin +
'/market/itemordershistogram?country=' +
country +
'&language=english&currency=' +
currencyId +
Expand Down Expand Up @@ -1611,7 +1611,7 @@
itemsString += '&items[]=' + encodeURIComponent(itemName) + '&qty[]=' + itemsWithQty[itemName];
}

var baseUrl = 'https://steamcommunity.com/market/multisell';
var baseUrl = window.location.origin + '/market/multisell';
var redirectUrl = baseUrl + '?appid=' + appid + '&contextid=' + contextid + itemsString;

var dialog = unsafeWindow.ShowDialog('Steam Economy Enhancer', '<iframe frameBorder="0" height="650" width="900" src="' + redirectUrl + '"></iframe>');
Expand Down Expand Up @@ -2753,7 +2753,7 @@
}

var marketListingsItemsQueue = async.queue(function(listing, next) {
$.get(window.location.protocol + '//steamcommunity.com/market/mylistings?count=100&start=' + listing,
$.get(window.location.origin + '/market/mylistings?count=100&start=' + listing,
function(data) {
if (!data || !data.success) {
next();
Expand Down

0 comments on commit f5e482c

Please sign in to comment.