From ecb68ee78bb4a06b6acf1940b452898e7078906c Mon Sep 17 00:00:00 2001 From: setop Date: Sun, 30 Nov 2025 20:48:03 +0100 Subject: [PATCH] fix(github): GH OAuth2 is broken --- background.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/background.js b/background.js index cfa98e5..c6b222a 100644 --- a/background.js +++ b/background.js @@ -24,6 +24,9 @@ browser.webRequest.onBeforeRequest.addListener( // click from everywhere else path = url.pathname.split("/"); org = path[1]; + if (org === "login") { // OAuth2 path + return + } repo = path[2]; return { redirectUrl: `https://${GOTHUB}/${org}/${repo}`