1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 23:39:42 +01:00

Forgot about spotifyApiReply.

This commit is contained in:
Hugo Lindström 2011-12-17 18:06:44 +01:00
parent 54c203982f
commit 52cb7cebd9

View File

@ -539,10 +539,10 @@ TomahawkApp::spotifyApiCheckFinished()
QNetworkReply* reply = qobject_cast< QNetworkReply* >( sender() );
Q_ASSERT( reply );
if ( reply->error() == QNetworkReply::ContentNotFoundError )
DropJob::setCanParseSpotifyPlaylists( true );
else
if ( reply->error() )
DropJob::setCanParseSpotifyPlaylists( false );
else
DropJob::setCanParseSpotifyPlaylists( true );
#endif
}