Skip to content

Commit

Permalink
disable youtube support for now
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatoleAM committed Apr 3, 2023
1 parent 8a18f21 commit b084b85
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Version 3.0.3.1000

- Disabled YouTube support temporarily
- Disabled YouTube support temporarily due an issue with request pattern

### Version 3.0.2.3000

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Version 3.0.3

- Disabled YouTube support temporarily
- Disabled YouTube support temporarily due an issue with request pattern

### Version 3.0.2

Expand Down
2 changes: 0 additions & 2 deletions src/background/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ if (!chrome.scripting) {
if (HOSTNAME_YT_REGEXP.test(loc.host)) {
chrome.tabs.executeScript(tabId, {
file: "content.js",
allFrames: true,
});
}
});
Expand All @@ -89,7 +88,6 @@ if (!chrome.scripting) {
id: "seventv-youtube",
js: ["content.js"],
matches: ["*://*.youtube.com/*"],
allFrames: true,
},
]);
}
Expand Down

2 comments on commit b084b85

@Geczy
Copy link

@Geczy Geczy commented on b084b85 Apr 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this all it took to fix 7tv and bttv?

@AnatoleAM
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Geczy that commit addresses a different issue, it's the one on http.worker that fixes bttv.

Please sign in to comment.