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