mirror of
https://example.com
synced 2024-11-22 06:36:38 +09:00
fix: conditions for checking updates
This commit is contained in:
parent
85261c0b08
commit
0526cfbb2a
2 changed files with 4 additions and 10 deletions
|
@ -121,11 +121,8 @@ os.api("admin/abuse-user-reports", {
|
|||
|
||||
if (defaultStore.state.showAdminUpdates) {
|
||||
os.api("latest-version").then((res) => {
|
||||
const cleanRes = parseInt(res?.tag_name.replace(/[^0-9]/g, ""));
|
||||
const cleanVersion = parseInt(version.replace(/[^0-9]/g, ""));
|
||||
if (cleanRes > cleanVersion) {
|
||||
updateAvailable.value = true;
|
||||
}
|
||||
if (res == null || res.tag_name == null) return;
|
||||
updateAvailable.value = !version.startsWith(res.tag_name);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -215,11 +215,8 @@ if ($i?.isAdmin) {
|
|||
|
||||
if (defaultStore.state.showAdminUpdates) {
|
||||
os.api("latest-version").then((res) => {
|
||||
const cleanRes = parseInt(res?.tag_name.replace(/[^0-9]/g, ""));
|
||||
const cleanVersion = parseInt(version.replace(/[^0-9]/g, ""));
|
||||
if (cleanRes > cleanVersion) {
|
||||
updateAvailable.value = true;
|
||||
}
|
||||
if (res == null || res.tag_name == null) return;
|
||||
updateAvailable.value = !version.startsWith(res.tag_name);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue