Right now it can't parse the mod addresses for Stellaris, HoI4 and Cities:Skylines because they have custom addresses. A quick and dirty solution I made was to use if statements.
Code:
function searchForMod(id, callback) { var appId = getAppId();
var url = "https://catalogue.smods.ru/?s=" + id + "&app=" + appId;
Right now it can't parse the mod addresses for Stellaris, HoI4 and Cities:Skylines because they have custom addresses. A quick and dirty solution I made was to use if statements.
Code:
function searchForMod(id, callback) {
var appId = getAppId();
var url = "https://catalogue.smods.ru/?s=" + id + "&app=" + appId;
if (appId == 255710) {
url = "https://smods.ru/?s="+id + "&app=" + appId;
}
else if(appId == 281990) {
url = "https://stellaris.smods.ru/?s="+id;
}
else if(appId == 394360) {
url = "https://hearts-of-iron-4.smods.ru/?s="+id + "&app=" + appId;
}