From ab1d8594ea4e0dcb6ec71359c86fd5f66bdc0b93 Mon Sep 17 00:00:00 2001 From: SiriusXT <1160925501@qq.com> Date: Fri, 15 Aug 2025 16:04:59 +0800 Subject: [PATCH] Fix (Update): No update notification in the global menu --- apps/client/src/widgets/buttons/global_menu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/buttons/global_menu.ts b/apps/client/src/widgets/buttons/global_menu.ts index a5d8091d2..9d6493b89 100644 --- a/apps/client/src/widgets/buttons/global_menu.ts +++ b/apps/client/src/widgets/buttons/global_menu.ts @@ -414,7 +414,7 @@ export default class GlobalMenuWidget extends BasicWidget { } async fetchLatestVersion() { - const RELEASES_API_URL = "https://api.github.com/repos/TriliumNext/Notes/releases/latest"; + 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();