diff --git a/bazarr/config.yaml b/bazarr/config.yaml index 32b61a88ec..74363800e6 100644 --- a/bazarr/config.yaml +++ b/bazarr/config.yaml @@ -113,4 +113,3 @@ slug: bazarr_nas udev: true url: https://github.com/alexbelgium/hassio-addons/tree/master/bazarr version: "1.6.0" -webui: "[PROTO:ssl]://[HOST]:[PORT:6767]" diff --git a/prowlarr/config.yaml b/prowlarr/config.yaml index dfa967670f..e6899488a7 100644 --- a/prowlarr/config.yaml +++ b/prowlarr/config.yaml @@ -111,4 +111,3 @@ slug: prowlarr udev: true url: https://github.com/alexbelgium/hassio-addons version: "nightly-2.5.1.5460-ls4" -webui: "[PROTO:ssl]://[HOST]:[PORT:9696]" diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index cb54f0724e..aaedaad4c8 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -52,7 +52,7 @@ RUN \ && echo 'WebUI\LocalHostAuth=false' >> /defaults/qBittorrent.conf \ \ # Add vuetorrent - && curl -f -s -S -O -J -L "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases | grep -o "http.*vuetorrent.zip" | head -1)" >/dev/null \ + && curl -f -s -S -O -J -L https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip >/dev/null \ && unzip -o vuetorrent.zip -d / >/dev/null \ && rm vuetorrent.zip >/dev/null diff --git a/qbittorrent/rootfs/etc/cont-init.d/91-qbittorrent_configuration.sh b/qbittorrent/rootfs/etc/cont-init.d/91-qbittorrent_configuration.sh index e455a43c5c..0610d31d06 100755 --- a/qbittorrent/rootfs/etc/cont-init.d/91-qbittorrent_configuration.sh +++ b/qbittorrent/rootfs/etc/cont-init.d/91-qbittorrent_configuration.sh @@ -198,7 +198,7 @@ if [ "$CUSTOMUI" = default ]; then sed -i '/AlternativeUIEnabled/d' qBittorrent.conf sed -i '/RootFolder/d' qBittorrent.conf # Update ingress webui - curl -f -s -S -O -J -L "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases | grep -o "http.*vuetorrent.zip" | head -1)" > /dev/null + curl -f -s -S -O -J -L https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip > /dev/null unzip -o vuetorrent.zip -d / > /dev/null rm vuetorrent.zip fi @@ -211,7 +211,7 @@ if bashio::config.has_value 'customUI' && [ ! "$CUSTOMUI" = default ] && [ ! "$C ### Download WebUI case $CUSTOMUI in "vuetorrent") - curl -f -s -S -J -L -o /webui/release.zip "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases/latest | grep -o "http.*vuetorrent.zip" | head -1)" > /dev/null + curl -f -s -S -J -L -o /webui/release.zip https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip > /dev/null ;; "qbit-matUI")