From 8cb9be59708bb051616d7e14d9fa0b87b86985af Mon Sep 17 00:00:00 2001 From: Apostroll Hardtrollias Date: Tue, 16 Apr 2024 00:31:37 +0300 Subject: [PATCH] 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`. --- src/configSchema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configSchema.json b/src/configSchema.json index 8d96c68..6421007 100644 --- a/src/configSchema.json +++ b/src/configSchema.json @@ -407,7 +407,7 @@ "default": 12 }, "blur": { - "type": "bool", + "type": "boolean", "description": "Appy the artwork as the MPRIS background and blur it", "default": true } @@ -446,7 +446,7 @@ "default": "" }, "active": { - "type": "bool", + "type": "boolean", "description": "Wether the toggle button is active as default or not", "default": false }