From fa99cce68d838375159c2aec9bd8da357d52391e Mon Sep 17 00:00:00 2001 From: mhutti1 Date: Sun, 20 May 2018 18:41:39 +0100 Subject: [PATCH] Decode reserved characters in URLs --- src/reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reader.cpp b/src/reader.cpp index 7ef3d7c8b..61c366f22 100644 --- a/src/reader.cpp +++ b/src/reader.cpp @@ -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