We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fd99fd commit e22fc5cCopy full SHA for e22fc5c
webextensions/edge/background.js
@@ -139,8 +139,11 @@ const RepostConfirmationCancelerTalkClient = {
139
140
console.log(`* Lookup sections for ${urlToMatch}`);
141
for (const section of config.Sections) {
142
+ if (section.Name.toLowerCase() !== "[edge]")
143
+ {
144
+ continue;
145
+ }
146
console.log(`handleURL: check for section ${section.Name} (${JSON.stringify(section)})`);
-
147
if (this.match(section, urlToMatch)) {
148
console.log(` => unmatched`);
149
this.startMonitoring();
0 commit comments