mirror of
https://github.com/stashapp/stash.git
synced 2026-04-20 22:11:32 +02:00
Don't preload videos (#1780)
This commit is contained in:
parent
bc6d04dc2a
commit
9e541956f2
2 changed files with 2 additions and 0 deletions
|
|
@ -22,6 +22,7 @@
|
|||
* Added sv-SE language option. ([#1691](https://github.com/stashapp/stash/pull/1691))
|
||||
|
||||
### 🐛 Bug fixes
|
||||
* Fix video transcoding process starting before video is played. ([#1780](https://github.com/stashapp/stash/pull/1780))
|
||||
* Don't scan zero-length files. ([#1779](https://github.com/stashapp/stash/pull/1779))
|
||||
* Accept svg files in file selector for tag images. ([#1778](https://github.com/stashapp/stash/pull/1778))
|
||||
* Fix criteria being incorrectly applied when clicking back button. ([#1765](https://github.com/stashapp/stash/pull/1765))
|
||||
|
|
|
|||
|
|
@ -310,6 +310,7 @@ export class ScenePlayerImpl extends React.Component<
|
|||
height: "100%",
|
||||
cast: {},
|
||||
primary: "html5",
|
||||
preload: "none",
|
||||
autostart:
|
||||
this.props.autoplay ||
|
||||
(this.props.config ? this.props.config.autostartVideo : false) ||
|
||||
|
|
|
|||
Loading…
Reference in a new issue