+ use getContentByDecodedUrl() instead of getContentByUrl()

This commit is contained in:
kelson42 2014-04-29 17:43:27 +02:00
parent ca52e42ed4
commit 5c13508401

View File

@ -274,7 +274,7 @@ static int accessHandlerCallback(void *cls,
else if (reader != NULL) {
pthread_mutex_lock(&readerLock);
try {
found = reader->getContentByUrl(urlStr, content, contentLength, mimeType);
found = reader->getContentByDecodedUrl(urlStr, content, contentLength, mimeType);
if (found) {
if (isVerbose()) {
cout << "Found " << urlStr << endl;