Implemented offline mode functionality

This commit is contained in:
CappielloAntonio
2021-04-26 19:17:42 +02:00
parent 658e69dcb9
commit e0569c3901
21 changed files with 635 additions and 23 deletions

View File

@@ -296,6 +296,7 @@ public class SyncUtil {
newSong.setAdded(oldSong.getAdded());
newSong.setLastPlay(oldSong.getLastPlay());
newSong.setPlayCount(oldSong.getPlayCount());
newSong.setOffline(oldSong.isOffline());
}
return newSong;