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 },