Skip to content
This repository has been archived by the owner on Oct 9, 2022. It is now read-only.

Commit

Permalink
fix: broken on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
phanan committed Oct 26, 2019
1 parent caf4398 commit c2399fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/services/playback.js
Expand Up @@ -126,7 +126,9 @@ export const playback = {
}, 3000))
},

isTranscoding: (() => isMobile.any && preferences.transcodeOnMobile)(),
get isTranscoding () {
return isMobile.any && preferences.transcodeOnMobile
},

registerPlay: song => {
recentlyPlayedStore.add(song)
Expand Down

0 comments on commit c2399fc

Please sign in to comment.