Add type account uid edge cases
parent
72fc6ab5b9
commit
9a82e00f15
|
@ -103,7 +103,7 @@
|
||||||
const localData = await readSave(`${prefix}${path}`);
|
const localData = await readSave(`${prefix}${path}`);
|
||||||
|
|
||||||
if (localData !== null) {
|
if (localData !== null) {
|
||||||
currentUID = localData;
|
currentUID = localData.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -243,7 +243,7 @@
|
||||||
throw 'account error';
|
throw 'account error';
|
||||||
}
|
}
|
||||||
|
|
||||||
currentUID = row.uid;
|
currentUID = row.uid.toString();
|
||||||
|
|
||||||
if (dayjs(time).isSameOrBefore(newestPullTime)) {
|
if (dayjs(time).isSameOrBefore(newestPullTime)) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue