Bladeren bron

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

Kristian Vos 3 jaren geleden
bovenliggende
commit
a76112b63e
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  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);
 			}