1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 03:10:12 +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() )
continue;
/// @note: We only care for collaborations if in sync
if( !updater->sync() )
continue;
collaborative = updater->collaborative();
}
return collaborative;
}
bool
PlaylistItem::createOverlay()
{