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 e7eaf28 commit aa3ff70Copy full SHA for aa3ff70
src/util.cpp
@@ -65,7 +65,7 @@ std::string urlDecode(std::string input) {
65
std::size_t idxFound = input.find('+');
66
while (idxFound != std::string::npos) {
67
input.replace(idxFound, 1, 1, ' ');
68
- idxFound = input.find('+', idxFound);
+ idxFound = input.find('+', idxFound + 1);
69
}
70
// Now replace percent-escapes
71
idxFound = input.find('%');
0 commit comments