Ver Fonte

fix: when a song stops playing in a station, stop the video in the background and don't just pause it

Kristian Vos há 3 anos atrás
pai
commit
a76112b63e
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      frontend/src/pages/Station/index.vue

+ 1 - 1
frontend/src/pages/Station/index.vue

@@ -1470,7 +1470,7 @@ export default {
 					);
 				}
 			} else {
-				if (this.playerReady) this.player.pauseVideo();
+				if (this.playerReady) this.player.stopVideo();
 				this.updateNoSong(true);
 			}