瀏覽代碼

fix(web) video keep playing when mouse is not over video (#885)

Alex 2 年之前
父節點
當前提交
137b2ffdd0
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      web/src/lib/components/shared-components/immich-thumbnail.svelte

+ 4 - 0
web/src/lib/components/shared-components/immich-thumbnail.svelte

@@ -87,6 +87,10 @@
 
 		isThumbnailVideoPlaying = false;
 		videoProgress = '00:00';
+
+		if (videoPlayerNode) {
+			videoPlayerNode.pause();
+		}
 	};
 
 	const handleCanPlay = (ev: Event) => {