From d32e177583fa69e6c4a2626816ec8ea2e5b93b51 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Sun, 14 Aug 2011 13:46:49 -0400 Subject: [PATCH] local results should only load social actions by the local source --- src/libtomahawk/result.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/result.cpp b/src/libtomahawk/result.cpp index b15302cc3..d4765d960 100644 --- a/src/libtomahawk/result.cpp +++ b/src/libtomahawk/result.cpp @@ -211,7 +211,7 @@ Result::parseSocialActions() { Tomahawk::SocialAction socialAction; socialAction = it.next(); - if ( socialAction.timestamp.toUInt() > highestTimestamp ) + if ( socialAction.timestamp.toUInt() > highestTimestamp && socialAction.source.toInt() == SourceList::instance()->getLocal()->id() ) { m_currentSocialActions[ socialAction.action.toString() ] = socialAction.value.toBool(); }