mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-08 23:26:40 +02:00
Use same signage on comparison
This commit is contained in:
@@ -68,7 +68,7 @@ void
|
|||||||
NetworkReply::load( const QUrl& url )
|
NetworkReply::load( const QUrl& url )
|
||||||
{
|
{
|
||||||
m_url = url;
|
m_url = url;
|
||||||
m_formerUrls << url;
|
m_formerUrls << url.toString();
|
||||||
QNetworkRequest request( url );
|
QNetworkRequest request( url );
|
||||||
|
|
||||||
Q_ASSERT( Tomahawk::Utils::nam() != 0 );
|
Q_ASSERT( Tomahawk::Utils::nam() != 0 );
|
||||||
|
@@ -38,8 +38,8 @@ public:
|
|||||||
void blacklistHostFromRedirection( const QString& host );
|
void blacklistHostFromRedirection( const QString& host );
|
||||||
QNetworkReply* reply() const { return m_reply; }
|
QNetworkReply* reply() const { return m_reply; }
|
||||||
|
|
||||||
static const uint maxRedirects = 100;
|
static const int maxRedirects = 100;
|
||||||
static const uint maxSameRedirects = 5;
|
static const int maxSameRedirects = 5;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void redirected();
|
void redirected();
|
||||||
|
Reference in New Issue
Block a user