mirror of
https://github.com/stashapp/stash.git
synced 2025-12-11 02:42:43 +01:00
Fix missing video player poster (#686)
This commit is contained in:
parent
116f61b6bf
commit
c327a98ecb
1 changed files with 5 additions and 2 deletions
|
|
@ -174,14 +174,17 @@ export class ScenePlayerImpl extends React.Component<
|
|||
}
|
||||
|
||||
private makePlaylist() {
|
||||
const { scene } = this.props;
|
||||
|
||||
return {
|
||||
image: scene.paths.screenshot,
|
||||
tracks: [
|
||||
{
|
||||
file: this.props.scene.paths.vtt,
|
||||
file: scene.paths.vtt,
|
||||
kind: "thumbnails",
|
||||
},
|
||||
{
|
||||
file: this.props.scene.paths.chapters_vtt,
|
||||
file: scene.paths.chapters_vtt,
|
||||
kind: "chapters",
|
||||
},
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue