more targeted eslint solutions here
All checks were successful
Build / build (pull_request) Successful in 1m17s
All checks were successful
Build / build (pull_request) Successful in 1m17s
This commit is contained in:
parent
fa8a55935b
commit
15f2531953
@ -1,4 +1,12 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
||||||
|
/* eslint-disable @typescript-eslint/no-floating-promises */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
||||||
|
/* eslint-disable no-undef */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
||||||
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
||||||
|
|
||||||
function openWebSocket() {
|
function openWebSocket() {
|
||||||
window.ws = new WebSocket("/custom/ws");
|
window.ws = new WebSocket("/custom/ws");
|
||||||
@ -66,6 +74,7 @@ function doLoginRequest(succ_cb, fail_cb) {
|
|||||||
time: parseInt(new Date() / 1000),
|
time: parseInt(new Date() / 1000),
|
||||||
s: "W0RFXVN0ZXZlIGxpa2VzIGJpZyBidXR0cw==", // signature of some kind
|
s: "W0RFXVN0ZXZlIGxpa2VzIGJpZyBidXR0cw==", // signature of some kind
|
||||||
lang: "en",
|
lang: "en",
|
||||||
|
// eslint-disable-next-line no-loss-of-precision
|
||||||
date: 1501230947855458660, // ???
|
date: 1501230947855458660, // ???
|
||||||
ClientType: registerSubmit ? "webui-register" : "webui",
|
ClientType: registerSubmit ? "webui-register" : "webui",
|
||||||
PS: "W0RFXVN0ZXZlIGxpa2VzIGJpZyBidXR0cw==" // anti-cheat data
|
PS: "W0RFXVN0ZXZlIGxpa2VzIGJpZyBidXR0cw==" // anti-cheat data
|
||||||
@ -1699,7 +1708,9 @@ function doAcquireRiven() {
|
|||||||
if (typeof fingerprint !== "object") {
|
if (typeof fingerprint !== "object") {
|
||||||
fingerprint = JSON.parse(fingerprint);
|
fingerprint = JSON.parse(fingerprint);
|
||||||
}
|
}
|
||||||
} catch (e) {}
|
} catch (e) {
|
||||||
|
/* empty */
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
typeof fingerprint !== "object" ||
|
typeof fingerprint !== "object" ||
|
||||||
!("compat" in fingerprint) ||
|
!("compat" in fingerprint) ||
|
||||||
@ -1952,7 +1963,7 @@ function doAddAllMods() {
|
|||||||
const req = $.get("/api/inventory.php?" + window.authz + "&xpBasedLevelCapDisabled=1");
|
const req = $.get("/api/inventory.php?" + window.authz + "&xpBasedLevelCapDisabled=1");
|
||||||
req.done(data => {
|
req.done(data => {
|
||||||
for (const modOwned of data.RawUpgrades) {
|
for (const modOwned of data.RawUpgrades) {
|
||||||
if (modOwned.ItemCount ?? 1 > 0) {
|
if ((modOwned.ItemCount ?? 1) > 0) {
|
||||||
modsAll.delete(modOwned.ItemType);
|
modsAll.delete(modOwned.ItemType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user