mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-10-12 10:28:17 +00:00
fix: handle some shorts thumbnails misaligned due to length > 60 sec
This commit is contained in:
@@ -176,7 +176,7 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
short() {
|
short() {
|
||||||
return this.video.duration > 0 && this.video.duration <= 60;
|
return this.video.duration > 0 && this.video.duration <= 61;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
components: { PlaylistAddModal },
|
components: { PlaylistAddModal },
|
||||||
|
Reference in New Issue
Block a user