Removed font onum

This commit is contained in:
h4h13 2019-12-30 10:23:51 +05:30
parent 9b1e078c20
commit bed8a7a9ad
32 changed files with 341 additions and 369 deletions

View file

@ -747,12 +747,12 @@ public class MusicService extends Service implements
uiThreadHandler.post(runnable);
}
@Nullable
@NonNull
public Song getCurrentSong() {
return getSongAt(getPosition());
}
@Nullable
@NonNull
public Song getSongAt(int position) {
if (position >= 0 && getPlayingQueue() != null && position < getPlayingQueue().size()) {
return getPlayingQueue().get(position);