mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 00:11:14 +02:00
nhttpd: skip doubles decode on channlename, revert 42b69a8a5e
This commit is contained in:
@@ -203,12 +203,9 @@ std::string decodeString(std::string encodedString) {
|
||||
iStr = strtoul(hex, NULL, 16); /* convert to Hex char */
|
||||
result += (char) iStr;
|
||||
count += 3;
|
||||
#if 0
|
||||
//why decode '+' to ' ' ?
|
||||
} else if (string[count] == '+') {
|
||||
result += ' ';
|
||||
count++;
|
||||
#endif
|
||||
} else {
|
||||
result += string[count];
|
||||
count++;
|
||||
|
Reference in New Issue
Block a user