mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
useDimer set default to true
This commit is contained in:
parent
b40eb3405e
commit
f8231f6e45
|
|
@ -14,8 +14,8 @@
|
|||
"pruneDays": 7,
|
||||
|
||||
// [optional] Lower the display brightness when no active call
|
||||
// The default is false
|
||||
"useDimmer": false,
|
||||
// The default is true
|
||||
"useDimmer": true,
|
||||
|
||||
// [optional] Can talkgroups be activated/disabled by groups on the *select tgs panel*
|
||||
// The default is true
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class Config {
|
|||
|
||||
this.systems = Array.isArray(config.systems) ? config.systems : [];
|
||||
|
||||
this.useDimmer = typeof config.useDimmer === 'boolean' ? config.useDimmer : false;
|
||||
this.useDimmer = typeof config.useDimmer === 'boolean' ? config.useDimmer : true;
|
||||
|
||||
this.useGroup = typeof config.useGroup === 'boolean' ? config.useGroup : true;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue