1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

Use same signage on comparison

This commit is contained in:
Uwe L. Korn
2013-07-24 11:29:54 +02:00
parent 95dac14782
commit e2f069833b
2 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ void
NetworkReply::load( const QUrl& url )
{
m_url = url;
m_formerUrls << url;
m_formerUrls << url.toString();
QNetworkRequest request( url );
Q_ASSERT( Tomahawk::Utils::nam() != 0 );

View File

@@ -38,8 +38,8 @@ public:
void blacklistHostFromRedirection( const QString& host );
QNetworkReply* reply() const { return m_reply; }
static const uint maxRedirects = 100;
static const uint maxSameRedirects = 5;
static const int maxRedirects = 100;
static const int maxSameRedirects = 5;
signals:
void redirected();