1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 05:37:29 +02:00

We own self created playlists

This commit is contained in:
Hugo Lindström
2012-08-31 18:48:18 +02:00
parent 32b5b0dbdc
commit 32a21e8d5b

View File

@@ -1260,7 +1260,7 @@ SpotifyAccount::playlistCopyCreated( const QString& msgType, const QVariantMap&
return;
}
SpotifyPlaylistInfo *info = new SpotifyPlaylistInfo( title, id, revid, true, false );
SpotifyPlaylistInfo *info = new SpotifyPlaylistInfo( title, id, revid, true, false, true );
startPlaylistSync( info );
}
@@ -1291,6 +1291,7 @@ SpotifyAccount::playlistCreated( const QString& msgType, const QVariantMap& msg,
playlist_ptr playlist = m_waitingForCreateReply.take( qid );
SpotifyPlaylistUpdater* updater = new SpotifyPlaylistUpdater( this, revid, id, playlist );
updater->setOwner( true );
updater->setSync( true );
m_updaters[ id ] = updater;
}