Merge branch 'fixed-typo-this-self' into 'master'

Fixed a typo in audio unlock code

See merge request funkwhale/funkwhale!843
This commit is contained in:
Eliot Berriot 2019-07-29 10:50:49 +02:00
commit 0845f20291
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ export default {
self.ended()
},
onunlock: function () {
if (this.$store.state.player.playing) {
if (self.$store.state.player.playing) {
self.soundId = self.sound.play(self.soundId)
}
},