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
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<ol>
|
||||
<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>
|
||||
|
||||
<h3>Version 0.9.44 beta5</h3>
|
||||
|
|
|
|||
|
|
@ -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