From 65f7f9605f6a777b57b17d2a596a1797ec698278 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Fri, 4 Sep 2020 12:14:38 -0400 Subject: [PATCH] Fix broken shadow ban check --- src/content.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content.ts b/src/content.ts index 7661edc1..f757d671 100644 --- a/src/content.ts +++ b/src/content.ts @@ -633,6 +633,8 @@ function sponsorsLookup(id: string) { getRequest.then(async (response: FetchResponse) => { if (response?.ok) { let getResult = JSON.parse(response.responseText); + console.log(getResult); + alert(getResult.length); if (Config.config.hashPrefix) { getResult = getResult.filter((video) => video.videoID === id); if (getResult.length > 0) {