From 7f7cdf5c12f9753da7a51b67f2c77e2475d4037b Mon Sep 17 00:00:00 2001 From: Hans Karlinius Date: Sun, 1 Dec 2024 09:19:34 +0100 Subject: [PATCH] test --- vhclient/config.yaml | 2 +- vhclient/rootfs/etc/s6-overlay/scripts/init-config | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vhclient/config.yaml b/vhclient/config.yaml index 34ac142..0b00a1c 100644 --- a/vhclient/config.yaml +++ b/vhclient/config.yaml @@ -1,5 +1,5 @@ name: VirtualHere Client -version: "0.1.328" +version: "0.1.329" slug: vhclient description: VirtualHere Client arch: diff --git a/vhclient/rootfs/etc/s6-overlay/scripts/init-config b/vhclient/rootfs/etc/s6-overlay/scripts/init-config index 9ab4425..1d2781e 100755 --- a/vhclient/rootfs/etc/s6-overlay/scripts/init-config +++ b/vhclient/rootfs/etc/s6-overlay/scripts/init-config @@ -3,8 +3,8 @@ options=$(bashio::api.supervisor GET "/addons/self/options/config") autofind=$(echo $options | jq '. | if .autofind then true else false end') autouse=$(echo $options | jq '. | if .autouse then true else false end') -clientid=$(echo $options | jq '.clientid | tostring') -manualhub=$(echo $options | jq '.manualhub | tostring') +clientid=$(echo $options | jq -r '.clientid | tostring') +manualhub=$(echo $options | jq -r '.manualhub | tostring') if $autofind; then bashio::log.info "Enable General AutoFind"