fix muted volume value
This commit is contained in:
parent
f4ffe98bf6
commit
21ca7d7b9a
|
|
@ -319,7 +319,7 @@ class APlayer {
|
|||
this.switchVolumeIcon();
|
||||
}
|
||||
|
||||
return this.audio.volume;
|
||||
return this.audio.muted ? 0 : this.audio.volume;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue