From 3ce41c50bc46b53e87f274bcb702bcdeac5ec212 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 14 Apr 2011 10:42:16 -0400 Subject: [PATCH] Don't assert if a scrobble failed, that's no fun. --- thirdparty/liblastfm2/src/scrobble/Audioscrobbler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thirdparty/liblastfm2/src/scrobble/Audioscrobbler.cpp b/thirdparty/liblastfm2/src/scrobble/Audioscrobbler.cpp index 3606bd1a4..0a98b7994 100644 --- a/thirdparty/liblastfm2/src/scrobble/Audioscrobbler.cpp +++ b/thirdparty/liblastfm2/src/scrobble/Audioscrobbler.cpp @@ -194,7 +194,8 @@ lastfm::Audioscrobbler::onTrackScrobbleReturn() } else { - Q_ASSERT(false); + qWarning() << "Got error in scrobble submission:" << lfm[ "error" ] << "and silently ignoring. Submission is cached."; + //Q_ASSERT(false); } }