diff --git a/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp b/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp index efc2ea1f5..9ae5f6729 100644 --- a/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp +++ b/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp @@ -315,9 +315,16 @@ LastFmConfig::onLovedFinished( QNetworkReply* reply ) syncLovedTracks( thisPage + 1 ); } } + else + { + m_ui->syncLovedTracks->setText( "Failed" ); + m_ui->progressBar->hide(); + } } catch( lastfm::ws::ParseError e ) { + m_ui->syncLovedTracks->setText( "Failed" ); + m_ui->progressBar->hide(); tDebug() << "XmlQuery error:" << e.message(); } }