From 0cbd1c8d72f3646a598377ee4182d96d8e3c3a3d Mon Sep 17 00:00:00 2001 From: hiimkobeand Date: Sun, 11 Aug 2024 17:55:58 +0200 Subject: [PATCH] fix: missing thumbnail url in watch_history when using mark as watched --- src/components/VideoItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VideoItem.vue b/src/components/VideoItem.vue index 456676d2..765e56e0 100644 --- a/src/components/VideoItem.vue +++ b/src/components/VideoItem.vue @@ -242,7 +242,7 @@ export default { videoId: videoId, title: instance.item.title, duration: instance.item.duration, - thumbnail: instance.item.thumbnailUrl, + thumbnail: instance.item.thumbnail, uploaderUrl: instance.item.uploaderUrl, uploaderName: instance.item.uploader, watchedAt: Date.now(),