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 c6bf69a commit 37fbd35Copy full SHA for 37fbd35
language-server/src/services/configuration.js
@@ -1,4 +1,3 @@
1
-import { fileURLToPath } from "node:url";
2
import { DidChangeConfigurationNotification } from "vscode-languageserver";
3
import picomatch from "picomatch";
4
@@ -106,8 +105,7 @@ export class Configuration {
106
105
this.#matcher = picomatch(schemaFilePatterns);
107
}
108
109
- const path = fileURLToPath(uri);
110
- return this.#matcher(path);
+ return this.#matcher(uri);
111
112
113
/** @type (handler: NotificationHandler<DidChangeConfigurationParams>) => void */
0 commit comments