We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bc5425 commit 75bfdbeCopy full SHA for 75bfdbe
1 file changed
src/vs/base/common/resources.ts
@@ -176,6 +176,10 @@ export class ExtUri implements IExtUri {
176
if (uri1.scheme !== uri2.scheme || !isEqualAuthority(uri1.authority, uri2.authority)) {
177
return false;
178
}
179
+ if (uri1.toString() === uri2.toString()) {
180
+ // TODO@jrieken see https://github.com/microsoft/vscode/issues/98934
181
+ return true;
182
+ }
183
const p1 = uri1.path, p2 = uri2.path;
184
return (p1 === p2 || this._ignorePathCasing(uri1) && equalsIgnoreCase(p1, p2)) && uri1.query === uri2.query && (ignoreFragment || uri1.fragment === uri2.fragment);
185
0 commit comments