fix: handle some shorts thumbnails misaligned due to length > 60 sec

This commit is contained in:
Sai Karthik 2022-07-05 11:38:50 +05:30
parent b1158469aa
commit c8d09772e9
No known key found for this signature in database
GPG Key ID: F5B9A961BF6EAF0E
1 changed files with 1 additions and 1 deletions

View File

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