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
1 changed files with 3 additions and 0 deletions

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) {