Unverified Commit 8cb9be59 authored by Apostroll Hardtrollias's avatar Apostroll Hardtrollias Committed by GitHub

Fix invalid data types in `configSchema.json` (#420)

Fix two instances inside `configSchema.json` where the invalid data type `bool` is used, instead of `boolean`.
parent be1533ad
...@@ -407,7 +407,7 @@ ...@@ -407,7 +407,7 @@
"default": 12 "default": 12
}, },
"blur": { "blur": {
"type": "bool", "type": "boolean",
"description": "Appy the artwork as the MPRIS background and blur it", "description": "Appy the artwork as the MPRIS background and blur it",
"default": true "default": true
} }
...@@ -446,7 +446,7 @@ ...@@ -446,7 +446,7 @@
"default": "" "default": ""
}, },
"active": { "active": {
"type": "bool", "type": "boolean",
"description": "Wether the toggle button is active as default or not", "description": "Wether the toggle button is active as default or not",
"default": false "default": false
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment