Skip to content
This repository was archived by the owner on Mar 22, 2018. It is now read-only.

Commit 2daa61d

Browse files
committed
Fix issue in capturing savefrom.net downloads
1 parent 7bf1a3a commit 2daa61d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ function isBlackListed(url) {
501501
* Check whether to interrupt the given url or not.
502502
*/
503503
function isWhiteListed(url) {
504-
if (url.includes("videoplayback")) {
504+
if (url.includes("video")) {
505505
return true;
506506
}
507507
for (var keyword of keywordsToInclude) {

0 commit comments

Comments
 (0)