mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03:00
FIX: Set volume only if it exists in localstorage
This commit is contained in:
parent
e2200f09d7
commit
66db710761
1 changed files with 3 additions and 1 deletions
|
@ -80,7 +80,9 @@ class OwncastPlayer {
|
|||
startPlayer() {
|
||||
this.log('Start playing');
|
||||
const source = { ...VIDEO_SRC };
|
||||
this.vjsPlayer.volume(localStorage.getItem('owncastVolume'));
|
||||
|
||||
if (localStorage.getItem('owncastVolume') !== null)
|
||||
this.vjsPlayer.volume(localStorage.getItem('owncastVolume'));
|
||||
this.vjsPlayer.src(source);
|
||||
// this.vjsPlayer.play();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue