BUGFIX: Added support for url encoded ampersands in RSS

This commit is contained in:
Christophe Dumez
2010-05-12 19:42:32 +00:00
parent 818a79c9db
commit 1a3f5e81e3
2 changed files with 2 additions and 1 deletions

View File

@@ -54,7 +54,7 @@ downloadThread::~downloadThread(){
}
void downloadThread::processDlFinished(QNetworkReply* reply) {
QString url = reply->url().toString();
QString url = reply->url().toEncoded().data();
if(reply->error() != QNetworkReply::NoError) {
// Failure
emit downloadFailure(url, errorCodeToString(reply->error()));