From a31c82d184784e225cf21bc6dd14caf1cc0bf5f4 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 29 Apr 2026 11:35:32 -0400 Subject: [PATCH] recyclarr: add fallback SD qualities for old shows --- services/arr/recyclarr.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/services/arr/recyclarr.nix b/services/arr/recyclarr.nix index 088388b..0073704 100644 --- a/services/arr/recyclarr.nix +++ b/services/arr/recyclarr.nix @@ -173,6 +173,19 @@ in ]; } { name = "HDTV-720p"; } + # SD fallback for shows that predate HD or whose only seeded + # public-tracker copies are 480p/DVD/SDTV. Sonarr will still + # upgrade to WEB/Bluray (cutoff above) when an HD release + # surfaces. + { + name = "SD"; + qualities = [ + "WEBDL-480p" + "WEBRip-480p" + "DVD" + "SDTV" + ]; + } ]; } ];