Fix a typo (XOR -> OR)
This commit is contained in:
parent
473fe01d76
commit
6b596e0cff
|
@ -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]) {
|
||||||
|
|
Loading…
Reference in New Issue