Exclude '/community-points' path

Exclude this path because it 404s in old reddit.
This commit is contained in:
Ben Nelson 2021-07-09 22:31:46 -05:00 committed by GitHub
parent f4f61587a2
commit 7b974bd31a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
const oldReddit = "https://old.reddit.com"; const oldReddit = "https://old.reddit.com";
const excludedPaths = ["/gallery", "/poll", "/rpan", "/settings", "/topics"]; const excludedPaths = ["/gallery", "/poll", "/rpan", "/settings", "/topics", "/community-points"];
chrome.webRequest.onBeforeRequest.addListener( chrome.webRequest.onBeforeRequest.addListener(
function (details) { function (details) {