Made the Player behaviour more consistent

This commit is contained in:
Deluan
2021-07-02 14:07:03 -04:00
parent 26b5e6b1b4
commit ace5c905eb
14 changed files with 374 additions and 377 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export const SongTitleField = ({ showTrackNumbers, ...props }) => {
const theme = useTheme()
const classes = useStyles()
const { record } = props
const currentTrack = useSelector((state) => state?.queue?.current || {})
const currentTrack = useSelector((state) => state?.player?.current || {})
const currentId = currentTrack.trackId
const paused = currentTrack.paused
const isCurrent =