Skip to content

Commit

Permalink
Fixed forced player volume
Browse files Browse the repository at this point in the history
  • Loading branch information
adokseo committed Apr 25, 2021
1 parent 02e7dea commit 800af8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,7 @@ ImprovedTube.playerVolume = function(node) {
if (node && ImprovedTube.storage.player_forced_volume === true) {
var volume = Number(ImprovedTube.storage.player_volume);

if (!ImprovedTube.isset(volume) || !volume) {
if (!ImprovedTube.isset(volume)) {
volume = 1;
}

Expand Down

0 comments on commit 800af8c

Please sign in to comment.