Browse Source

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

Kristian Vos 3 years ago
parent
commit
a76112b63e
1 changed files with 1 additions and 1 deletions
  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);
 			}