Decode reserved characters in URLs

This commit is contained in:
mhutti1 2018-05-20 18:41:39 +01:00
parent fc6a0bcea2
commit fa99cce68d
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ Entry Reader::getEntryFromPath(const std::string& path) const
Entry Reader::getEntryFromEncodedPath(const std::string& path) const
{
return getEntryFromPath(urlDecode(path));
return getEntryFromPath(urlDecode(path, true));
}
Entry Reader::getEntryFromTitle(const std::string& title) const