We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0185551 commit daf1980Copy full SHA for daf1980
lib/workbench/workbench.ts
@@ -344,7 +344,8 @@ export class Workbench {
344
fields[f.name.toLowerCase()] = f.value.toLowerCase();
345
}
346
for (const f in fieldQuery) {
347
- if (!fields[f] || fields[f] !== fieldQuery[f].replace(/['"]/g, "")) {
+ const field = fields[f.replace(/['"]/g, "")];
348
+ if (!field || field !== fieldQuery[f].replace(/['"]/g, "")) {
349
return false;
350
351
0 commit comments