diff --git a/changes/changelog.d/1213.bugfix b/changes/changelog.d/1213.bugfix
new file mode 100644
index 0000000000000000000000000000000000000000..0cbb9481ab54a842e7e2f8e4f93ba2afcb69e7af
--- /dev/null
+++ b/changes/changelog.d/1213.bugfix
@@ -0,0 +1 @@
+Partially fixed playing two tracks at same time (#1213)
diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue
index 6e1a61173b31ded0d7ccb9b0767968f2d26c4e51..eca218ef56fbfbc7cf07030c3f7029c6428d865e 100644
--- a/front/src/components/audio/Player.vue
+++ b/front/src/components/audio/Player.vue
@@ -384,6 +384,10 @@ export default {
           })
         },
         onplay: function () {
+          if (this != self.currentSound) {
+            this.stop()
+            return
+          }
           self.$store.commit('player/isLoadingAudio', false)
           self.$store.commit('player/resetErrorCount')
           self.$store.commit('player/errored', false)