Fix bug in image visualization

This commit is contained in:
Antonio Cappiello 2020-11-27 09:06:50 +01:00
parent a0f417fa94
commit 18fae806a6
36 changed files with 431 additions and 150 deletions

View file

@ -381,14 +381,14 @@ public class Song implements Parcelable {
this.added = added;
}
public void setAdded(int playCount) {
this.playCount = playCount;
}
public void setLastPlay(long lastPlay) {
this.lastPlay = lastPlay;
}
public void setPlayCount(int playCount) {
this.playCount = playCount;
}
public void nowPlaying() {
this.playCount++;
this.lastPlay = Instant.now().toEpochMilli();