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

@@ -5,6 +5,7 @@
- BUGFIX: Improved empty folder removing code
- BUGFIX: Use guid or news url as RSS items identifier (instead of title)
- BUGFIX: Fix possible crash in RSS item selection code
- BUGFIX: Added support for url encoded ampersands in RSS
- COSMETIC: Sort torrent labels in popup menu
- I18N: Added Croatian translation

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()));