diff --git a/maze-utils b/maze-utils index 5e59499450..bd7b3265f2 160000 --- a/maze-utils +++ b/maze-utils @@ -1 +1 @@ -Subproject commit 5e594994506ebfef5e474ef0622017961d5316a8 +Subproject commit bd7b3265f23f25b3be95193d7c6b0b44d1414234 diff --git a/src/config.ts b/src/config.ts index 38b579c5de..a74edd4a9d 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); } diff --git a/src/popup/PopupComponent.tsx b/src/popup/PopupComponent.tsx index 912d8de15b..244784ce47 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 {