From 80cd6022b5f3a940c3f3af71f4bc0c6d739f95c9 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 10 Jun 2023 11:18:35 +0530 Subject: [PATCH] Fix a miserable mistake --- src/routes/WatchVideo.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/WatchVideo.vue b/src/routes/WatchVideo.vue index 32fb9bf..bf6028d 100644 --- a/src/routes/WatchVideo.vue +++ b/src/routes/WatchVideo.vue @@ -388,10 +388,10 @@ export default { const ts = new Date() await PMDB.watchedVideos.update(this.dbID, { timestamp: ts, - video: this.video + video: video }) dbObj.timestamp = ts - dbObj.video = this.video + dbObj.video = video this.lastWatch = dbObj this.dbID = dbObj.id }