mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
Properly handle + in urls
This commit is contained in:
parent
53ff7392e9
commit
96fe8a69de
@ -1378,6 +1378,10 @@ wstring htmldecode(string str, bool html, char xc)
|
||||
}
|
||||
i+=2;
|
||||
}
|
||||
else if(str[i]=='+' && !html)
|
||||
{
|
||||
tmp+=' ';
|
||||
}
|
||||
else
|
||||
{
|
||||
tmp+=str[i];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user