From cbad3da55e31b212b5e3545504399b5baef6a45a Mon Sep 17 00:00:00 2001 From: kovsu <2583695112@qq.com> Date: Wed, 6 Nov 2024 10:16:40 +0800 Subject: [PATCH] update --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 1f56196..087a091 100644 --- a/index.ts +++ b/index.ts @@ -325,7 +325,7 @@ export const isClosedIssue = (): boolean => { } const status = $(stateSelector)!.textContent!.trim(); - return status === 'Closed'; + return status === 'Closed' || status === 'Closed as not planned'; }; export const isReleases = (url: URL | HTMLAnchorElement | Location = location): boolean => getRepo(url)?.path === 'releases';