diff --git a/app/src/main/assets/changelog.html b/app/src/main/assets/changelog.html
index db61ef8d..4f8cb45c 100644
--- a/app/src/main/assets/changelog.html
+++ b/app/src/main/assets/changelog.html
@@ -29,6 +29,9 @@
- FIX: Fixed the plural typo in the artist list.
+ - FIX: 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.
+
Version 0.9.44 beta5
diff --git a/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java b/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java
index bc4f635f..8df6cd85 100644
--- a/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java
+++ b/app/src/main/java/com/kabouzeid/gramophone/service/MusicService.java
@@ -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);