diff --git a/README.md b/README.md
index c65184276..1b59142b2 100644
--- a/README.md
+++ b/README.md
@@ -27,9 +27,10 @@ Any applications not in ported or unsupported need to be tested for whether they
Currently ported applications
- ActualBudget - unable to test but does run
- Adguard Home
+ ActualBudget
+ Adguard
Radarr
+ Sonarr
diff --git a/ct/sonarr.sh b/ct/sonarr.sh
index fe2c59390..907666e5e 100644
--- a/ct/sonarr.sh
+++ b/ct/sonarr.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
+source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster)
# License: MIT
@@ -57,7 +57,7 @@ header_info
if [[ ! -d /opt/Sonarr ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP v4"
systemctl stop sonarr.service
-wget -q -O SonarrV4.tar.gz 'https://services.sonarr.tv/v1/download/main/latest?version=4&os=linux&arch=x64'
+wget -q -O SonarrV4.tar.gz 'https://services.sonarr.tv/v1/download/main/latest?version=4&os=linux&arch=arm64'
tar -xzf SonarrV4.tar.gz
rm -rf /opt/Sonarr
mv Sonarr /opt
diff --git a/install/sonarr-install.sh b/install/sonarr-install.sh
index 7f98864bf..59d5ccf71 100644
--- a/install/sonarr-install.sh
+++ b/install/sonarr-install.sh
@@ -18,12 +18,13 @@ $STD apt-get install -y curl
$STD apt-get install -y sudo
$STD apt-get install -y mc
$STD apt-get install -y sqlite3
+$STD apt-get install -y wget
msg_ok "Installed Dependencies"
msg_info "Installing Sonarr v4"
mkdir -p /var/lib/sonarr/
chmod 775 /var/lib/sonarr/
-wget -q -O SonarrV4.tar.gz 'https://services.sonarr.tv/v1/download/main/latest?version=4&os=linux&arch=x64'
+wget -q -O SonarrV4.tar.gz 'https://services.sonarr.tv/v1/download/main/latest?version=4&os=linux&arch=arm64'
tar -xzf SonarrV4.tar.gz
mv Sonarr /opt
rm -rf SonarrV4.tar.gz