소스 검색

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

Kristian Vos 3 년 전
부모
커밋
a76112b63e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
 			}