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 404c0ac commit db6ed55Copy full SHA for db6ed55
lib/wpt/index.js
@@ -222,7 +222,7 @@ export class InterfacesUpdater extends WPTUpdater {
222
const found = [];
223
for (const mod of supported) {
224
const idl = `${mod}.idl`;
225
- const asset = assets.find(asset => asset.name === idl);
+ const asset = assets.find(asset => asset.name.toLowerCase() === idl.toLowerCase());
226
if (asset) {
227
found.push(asset);
228
} else {
0 commit comments