Renamed keep history to pause history

This commit is contained in:
Omar 2022-03-08 18:05:06 +02:00
parent 9b59c5299a
commit ebe90262cb
6 changed files with 15 additions and 15 deletions

View file

@ -124,8 +124,8 @@ abstract class AbsMusicServiceActivity : AbsBaseActivity(), IMusicServiceEventLi
if (entity != null) {
repository.updateHistorySong(MusicPlayerRemote.currentSong)
} else {
// Check whether keep history option is ON or OFF
if (PreferenceUtil.homeHistory) {
// Check whether pause history option is ON or OFF
if (!PreferenceUtil.pauseHistory) {
repository.addSongToHistory(MusicPlayerRemote.currentSong)
}
}