From c8d09772e91aa4d43942666e8a0087eac245e705 Mon Sep 17 00:00:00 2001
From: Sai Karthik <kskarthik@disroot.org>
Date: Tue, 5 Jul 2022 11:38:50 +0530
Subject: [PATCH] fix: handle some shorts thumbnails misaligned due to length >
 60 sec

---
 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 90e27236..326a9a7b 100644
--- a/src/components/VideoItem.vue
+++ b/src/components/VideoItem.vue
@@ -176,7 +176,7 @@ export default {
     },
     computed: {
         short() {
-            return this.video.duration > 0 && this.video.duration <= 60;
+            return this.video.duration > 0 && this.video.duration <= 61;
         },
     },
     components: { PlaylistAddModal },