Add fake fallback thumbnail URL for encrypted videos
Signed-off-by: Tulir Asokan <tulir@maunium.net>
This commit is contained in:
parent
cd39474d26
commit
522d58eb57
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ export default class MVideoBody extends React.PureComponent<IProps, IState> {
|
||||||
// enable the play button. Firefox does not seem to care either
|
// enable the play button. Firefox does not seem to care either
|
||||||
// way, so it's fine to do for all browsers.
|
// way, so it's fine to do for all browsers.
|
||||||
decryptedUrl: `data:${content?.info?.mimetype},`,
|
decryptedUrl: `data:${content?.info?.mimetype},`,
|
||||||
decryptedThumbnailUrl: thumbnailUrl,
|
decryptedThumbnailUrl: thumbnailUrl || `data:${content?.info?.mimetype},`,
|
||||||
decryptedBlob: null,
|
decryptedBlob: null,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue