Skip to content

Commit

Permalink
Fix emoji URL (add wildcard) (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikigal authored and sindresorhus committed Jan 31, 2019
1 parent 9b34f7a commit 50590a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ function initRequestsFiltering(): void {
urls: [
`*://*.${domain}/*typ.php*`, // Type indicator blocker
`*://*.${domain}/*change_read_status.php*`, // Seen indicator blocker
'*://static.xx.fbcdn.net/images/emoji.php/v9/*', // Emoji
'*://facebook.com/images/emoji.php/v9/*' // Emoji
'*://*.fbcdn.net/images/emoji.php/v9/*', // Emoji
'*://*.facebook.com/images/emoji.php/v9/*' // Emoji
]
};

Expand Down

0 comments on commit 50590a7

Please sign in to comment.