1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 20:00:13 +02:00

Only care for collaborative if in sync

This commit is contained in:
Hugo Lindström
2012-08-22 10:58:01 +02:00
parent 1e1a668fae
commit e1b589ad92

View File

@@ -305,12 +305,16 @@ PlaylistItem::collaborative() const
{ {
if( !updater->collaborative() ) if( !updater->collaborative() )
continue; continue;
/// @note: We only care for collaborations if in sync
if( !updater->sync() )
continue;
collaborative = updater->collaborative(); collaborative = updater->collaborative();
} }
return collaborative; return collaborative;
} }
bool bool
PlaylistItem::createOverlay() PlaylistItem::createOverlay()
{ {