From efd095fb736a47c1c336eabcd716dca67cf5ef59 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Sat, 25 Oct 2025 10:23:16 +0800 Subject: [PATCH] fix(custom-github-provider): decode tag from href to handle URL encoding --- apps/desktop/layer/main/src/updater/custom-github-provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/layer/main/src/updater/custom-github-provider.ts b/apps/desktop/layer/main/src/updater/custom-github-provider.ts index ef90be635..8e137853f 100644 --- a/apps/desktop/layer/main/src/updater/custom-github-provider.ts +++ b/apps/desktop/layer/main/src/updater/custom-github-provider.ts @@ -112,7 +112,7 @@ export class CustomGitHubProvider extends BaseGitHubProvider { } // This Release's Tag - const hrefTag = hrefElement[1]! + const hrefTag = decodeURIComponent(hrefElement[1]!) logger.debug(`Entry #${entryCount}: Processing tag: ${hrefTag}`) // Get Channel from this release's tag