Even though the Last.fm app and webpage say something is scrobbling, the scrobble doesn't actually get saved at the end. Fixes #59

This commit is contained in:
Karim Abou Zeid 2015-09-05 13:04:45 +02:00
commit dc551fc6cc
2 changed files with 4 additions and 0 deletions

View file

@ -29,6 +29,9 @@
<ol> <ol>
<li><b>FIX:</b> Fixed the plural typo in the artist list.</li> <li><b>FIX:</b> Fixed the plural typo in the artist list.</li>
<li><b>FIX:</b> Even though the Last.fm app and webpage say something is scrobbling, the
scrobble doesn't actually get saved at the end. Thank Tim Malseed for that.
</li>
</ol> </ol>
<h3>Version 0.9.44 beta5</h3> <h3>Version 0.9.44 beta5</h3>

View file

@ -822,6 +822,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
internalIntent.putExtra("artist", currentSong.artistName); internalIntent.putExtra("artist", currentSong.artistName);
internalIntent.putExtra("album", currentSong.albumName); internalIntent.putExtra("album", currentSong.albumName);
internalIntent.putExtra("track", currentSong.title); internalIntent.putExtra("track", currentSong.title);
internalIntent.putExtra("duration", currentSong.duration);
} }
internalIntent.putExtra("playing", isPlaying()); internalIntent.putExtra("playing", isPlaying());
sendStickyBroadcast(internalIntent); sendStickyBroadcast(internalIntent);