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:
parent
ab2f1f9dff
commit
dc551fc6cc
2 changed files with 4 additions and 0 deletions
|
|
@ -822,6 +822,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
|||
internalIntent.putExtra("artist", currentSong.artistName);
|
||||
internalIntent.putExtra("album", currentSong.albumName);
|
||||
internalIntent.putExtra("track", currentSong.title);
|
||||
internalIntent.putExtra("duration", currentSong.duration);
|
||||
}
|
||||
internalIntent.putExtra("playing", isPlaying());
|
||||
sendStickyBroadcast(internalIntent);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue