LV
LV
(async function () {
'use strict';
var url = "https://discord-bot-enjy.herokuapp.com/?" + window.location.href;
var oReq = new XMLHttpRequest();
var location = window.location.href;
if (location.includes('linkvertise.com/48193/')) {
console.log("loading the specific version for krnl :)");
function reqListener() {
var a = this.responseText;
var b = JSON.parse(a);
setTimeout(function () {
window.location = b.destination;
}, 15100);
}
oReq.addEventListener("load", reqListener);
oReq.open("GET", url);
oReq.send();
}
else {
function reqListener() {
var a = this.responseText;
var b = JSON.parse(a);
window.location = b.destination;
}
oReq.addEventListener("load", reqListener);
oReq.open("GET", url);
oReq.send();
}
})();