1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-01-28 19:02:18 +00:00

Fix for null thumbnail URL

This commit is contained in:
snobu
2021-05-11 11:06:16 +03:00
parent 918aadce5d
commit 7d91f32af2
2 changed files with 4 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export type Video = {
outPath: string;
totalChunks: number; // Abstraction of FFmpeg timemark
playbackUrl: string;
posterImageUrl: string;
posterImageUrl: string | null;
captionsUrl?: string
}