Merge remote-tracking branch 'upstream/main'
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Dalite 2023-11-10 00:29:32 +01:00
commit c07ddbe7b1

View file

@ -469,6 +469,10 @@ class Video extends PureComponent {
}; };
_syncVideoToVolumeState = (volume = null, muted = null) => { _syncVideoToVolumeState = (volume = null, muted = null) => {
if (!this.video) {
return;
}
this.video.volume = volume ?? this.state.volume; this.video.volume = volume ?? this.state.volume;
this.video.muted = muted ?? this.state.muted; this.video.muted = muted ?? this.state.muted;
}; };