add empty constructor for song model

This commit is contained in:
dkanada 2020-10-30 14:24:37 +09:00
commit 632061bb7f
7 changed files with 21 additions and 15 deletions

View file

@ -623,7 +623,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
if (position >= 0 && position < getPlayingQueue().size()) {
return getPlayingQueue().get(position);
} else {
return Song.EMPTY_SONG;
return Song.EMPTY;
}
}