We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b97d1e9 commit 2fd99fdCopy full SHA for 2fd99fd
1 file changed
webextensions/edge/background.js
@@ -92,7 +92,7 @@ const RepostConfirmationCancelerTalkClient = {
92
},
93
94
match(section, url) {
95
- for (let pattern of (section.URLExcludePatterns || section.Excludes || [])) {
+ for (let pattern of (section.Excludes || [])) {
96
if (Array.isArray(pattern)) {
97
pattern = pattern[0];
98
}
@@ -102,7 +102,7 @@ const RepostConfirmationCancelerTalkClient = {
102
103
104
105
- for (let pattern of (section.URLPatterns || section.Patterns || [])) {
+ for (let pattern of (section.Patterns || [])) {
106
107
108
0 commit comments