From 127a8c87062fad01ffb0303661a6cb7c955235e8 Mon Sep 17 00:00:00 2001 From: Ajay Date: Sun, 26 Jul 2026 15:24:15 -0400 Subject: [PATCH 1/2] Fix copy debug info button --- src/config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 38b579c5d..a74edd4a9 100644 --- a/src/config.ts +++ b/src/config.ts @@ -625,7 +625,6 @@ export function generateDebugDetails(): string { output.config.serverAddress = (output.config.serverAddress === CompileConfig.serverAddress) ? "Default server address" : "Custom server address"; output.config.invidiousInstances = output.config.invidiousInstances.length; - output.config.skipRules = output.config.skipRules.length; return JSON.stringify(output, null, 4); } From 6a306a09622170d0f7f733faa3172a58346650bd Mon Sep 17 00:00:00 2001 From: Ajay Date: Sun, 26 Jul 2026 17:23:30 -0400 Subject: [PATCH 2/2] Fix channel overrides not working in a very specific case --- maze-utils | 2 +- src/popup/PopupComponent.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/maze-utils b/maze-utils index 5e5949945..bd7b3265f 160000 --- a/maze-utils +++ b/maze-utils @@ -1 +1 @@ -Subproject commit 5e594994506ebfef5e474ef0622017961d5316a8 +Subproject commit bd7b3265f23f25b3be95193d7c6b0b44d1414234 diff --git a/src/popup/PopupComponent.tsx b/src/popup/PopupComponent.tsx index 912d8de15..244784ce4 100644 --- a/src/popup/PopupComponent.tsx +++ b/src/popup/PopupComponent.tsx @@ -521,7 +521,7 @@ function SkipProfileMenu(props: {open: boolean; videoID: string}): JSX.Element { React.useEffect(() => { if (props.open) { const channelInfo = Video.getChannelIDInfo(); - if (!channelInfo) { + if (!channelInfo.id) { if (Video.isOnYTTV()) { alert(chrome.i18n.getMessage("yttvNoChannelWhitelist")); } else {