From 7a421eb19747b1792779d82348296d789d2e3653 Mon Sep 17 00:00:00 2001 From: zakary Date: Sun, 21 Jul 2024 09:30:34 -0500 Subject: [PATCH] remove(xseed/client): remove unsupported media types --- xseed.sh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/xseed.sh b/xseed.sh index f8d0134..3693e2f 100644 --- a/xseed.sh +++ b/xseed.sh @@ -66,25 +66,6 @@ detect_application() { fi # shellcheck disable=SC2154 # These are set by Starr on call eventType="$sonarr_eventtype" - elif [ -n "$lidarr_eventtype" ]; then - app="lidarr" - # shellcheck disable=SC2154 # These are set by Starr on call - clientID="$lidarr_download_client" - # shellcheck disable=SC2154 # These are set by Starr on call - filePath="$lidarr_artist_path" - # shellcheck disable=SC2154 # These are set by Starr on call - downloadID="$lidarr_download_id" - # shellcheck disable=SC2154 # These are set by Starr on call - eventType="$lidarr_eventtype" - elif [ -n "$readarr_eventtype" ]; then - app="readarr" - # shellcheck disable=SC2154 # These are set by Starr on call - clientID="$readarr_download_client" - # shellcheck disable=SC2154 # These are set by Starr on call - filePath="$readarr_author_path" - # shellcheck disable=SC2154 # These are set by Starr on call - downloadID="$readarr_download_id" - eventType="$readarr_eventtype" fi [ "$app" == "unknown" ] && { echo "Unknown application type detected. Exiting."