diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index 8ea141cb7..74cde8148 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -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]) {