1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

Fix query parsing for path-like flakes

(cherry picked from commit f45d2ee2b7)
This commit is contained in:
Fabian Möller 2023-12-11 16:02:09 +01:00 committed by github-actions[bot]
parent ae451e2247
commit f72b0b5b00

View file

@ -90,7 +90,7 @@ std::pair<FlakeRef, std::string> parsePathFlakeRefWithFragment(
fragment = percentDecode(url.substr(fragmentStart+1)); fragment = percentDecode(url.substr(fragmentStart+1));
} }
if (pathEnd != std::string::npos && fragmentStart != std::string::npos) { if (pathEnd != std::string::npos && fragmentStart != std::string::npos) {
query = decodeQuery(url.substr(pathEnd+1, fragmentStart)); query = decodeQuery(url.substr(pathEnd+1, fragmentStart-pathEnd-1));
} }
if (baseDir) { if (baseDir) {