diff options
author | Ajay Ramachandran <[email protected]> | 2020-09-04 12:17:09 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-09-04 12:17:09 -0400 |
commit | e0c6b687d3f5500e01d544914501e6b655c0c613 (patch) | |
tree | c877cb397475b1d1149c9989b2c23b543bd277a0 /src | |
parent | 65f7f9605f6a777b57b17d2a596a1797ec698278 (diff) | |
download | SponsorBlock-e0c6b687d3f5500e01d544914501e6b655c0c613.tar.gz SponsorBlock-e0c6b687d3f5500e01d544914501e6b655c0c613.zip |
Revert "Fix broken shadow ban check"
This reverts commit 65f7f9605f6a777b57b17d2a596a1797ec698278.
Diffstat (limited to 'src')
-rw-r--r-- | src/content.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/content.ts b/src/content.ts index f757d671..7661edc1 100644 --- a/src/content.ts +++ b/src/content.ts @@ -633,8 +633,6 @@ 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) { |