From 6b596e0cff56ccf6fd11071fdda1c094c1988165 Mon Sep 17 00:00:00 2001 From: Kasper Seweryn Date: Thu, 30 Jun 2022 02:16:11 +0000 Subject: [PATCH] Fix a typo (XOR -> OR) --- front/src/components/audio/Player.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) {