Don't preload videos (#1780)

This commit is contained in:
WithoutPants
2021-09-30 09:50:30 +10:00
committed by GitHub
parent bc6d04dc2a
commit 9e541956f2
2 changed files with 2 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
* Added sv-SE language option. ([#1691](https://github.com/stashapp/stash/pull/1691)) * Added sv-SE language option. ([#1691](https://github.com/stashapp/stash/pull/1691))
### 🐛 Bug fixes ### 🐛 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)) * 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)) * 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)) * Fix criteria being incorrectly applied when clicking back button. ([#1765](https://github.com/stashapp/stash/pull/1765))

View File

@@ -310,6 +310,7 @@ export class ScenePlayerImpl extends React.Component<
height: "100%", height: "100%",
cast: {}, cast: {},
primary: "html5", primary: "html5",
preload: "none",
autostart: autostart:
this.props.autoplay || this.props.autoplay ||
(this.props.config ? this.props.config.autostartVideo : false) || (this.props.config ? this.props.config.autostartVideo : false) ||