1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-18 20:40:43 +01:00

Don't scrobble a track if we've been skipping through it. Fixes issue #105

This commit is contained in:
David Sansome 2010-03-24 14:21:26 +00:00
parent 16a953af11
commit 92c7eff0fb

View File

@ -232,6 +232,9 @@ void Player::Seek(int seconds) {
return;
engine_->seek(seconds * 1000);
// If we seek the track we don't want to submit it to last.fm
playlist_->set_scrobbled(true);
}
void Player::EngineMetadataReceived(const Engine::SimpleMetaBundle& bundle) {