Fix a typo (XOR -> OR)

This commit is contained in:
Kasper Seweryn 2022-06-30 02:16:11 +00:00 committed by Georg Krause
parent 473fe01d76
commit 6b596e0cff
1 changed files with 1 additions and 1 deletions

View File

@ -767,7 +767,7 @@ export default {
} }
}, },
setCurrentTime (t) { setCurrentTime (t) {
if (t < 0 | t > this.duration) { if (t < 0 || t > this.duration) {
return return
} }
if (!this.currentSound || !this.currentSound._sounds[0]) { if (!this.currentSound || !this.currentSound._sounds[0]) {