mirror of
https://github.com/zadam/trilium.git
synced 2025-11-21 08:04:24 +01:00
fix(global_menu): uncaught exception if update request fails (closes #5700)
This commit is contained in:
parent
d51e3de674
commit
165357f444
@ -221,9 +221,15 @@ function useTriliumUpdateStatus() {
|
||||
async function updateVersionStatus() {
|
||||
const RELEASES_API_URL = "https://api.github.com/repos/TriliumNext/Trilium/releases/latest";
|
||||
|
||||
const resp = await fetch(RELEASES_API_URL);
|
||||
const data = await resp.json();
|
||||
const latestVersion = data?.tag_name?.substring(1);
|
||||
let latestVersion: string | undefined = undefined;
|
||||
try {
|
||||
const resp = await fetch(RELEASES_API_URL);
|
||||
const data = await resp.json();
|
||||
latestVersion = data?.tag_name?.substring(1);
|
||||
} catch (e) {
|
||||
console.warn("Unable to fetch latest version info from GitHub releases API", e);
|
||||
}
|
||||
|
||||
setLatestVersion(latestVersion);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user