We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ce0a73 commit 68a0c11Copy full SHA for 68a0c11
1 file changed
src/vs/base/common/map.ts
@@ -219,7 +219,7 @@ export class UriIterator implements IKeyIterator<URI> {
219
} else if (this._states[this._stateIdx] === UriIteratorState.Path) {
220
return this._pathIterator.cmp(a);
221
} else if (this._states[this._stateIdx] === UriIteratorState.Query) {
222
- return compareIgnoreCase(a, this._value.scheme);
+ return compareIgnoreCase(a, this._value.query);
223
} else if (this._states[this._stateIdx] === UriIteratorState.Fragment) {
224
return compareIgnoreCase(a, this._value.fragment);
225
}
0 commit comments