From 54fc19b01b1d3123bfd6439cf87d6ab8189fbb97 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Thu, 23 May 2024 11:11:38 -0400 Subject: [PATCH] Updated default volume value. --- htdocs/lib/UI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/UI.js b/htdocs/lib/UI.js index ab9fedce..18c5c59b 100644 --- a/htdocs/lib/UI.js +++ b/htdocs/lib/UI.js @@ -36,7 +36,7 @@ UI.loadSettings = function() { this.toggleNR(LS.has('nr_enabled')? LS.loadBool('nr_enabled') : false); // Get volume and mute - var volume = LS.has('volume')? LS.loadInt('volume') : 50; + var volume = LS.has('volume')? LS.loadInt('volume') : 100; var muted = LS.has('volumeMuted')? LS.loadInt('volumeMuted') : -1; if (muted >= 0) { if (this.volumeMuted >= 0) {