Fix a typo (XOR -> OR)

gitpod/test-1866
Kasper Seweryn 2022-06-30 02:16:11 +00:00 zatwierdzone przez Georg Krause
rodzic 473fe01d76
commit 6b596e0cff
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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