From 7b4cff1874921870a7a43fb7e8e9c65cda3d0b80 Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Tue, 25 Aug 2026 02:21:21 +0100 Subject: [PATCH] fix(arr): give the reconcile loop its translators #196 built SubtitleAction with an empty backend list, correctly: no translation backend existed when it was written. #216 then built translation_backends() and wired it into AppState, so the API can translate. Merged, the reconcile loop still got Vec::new() and its translate step reported "no engine" in every real deployment. Neither branch was wrong alone; the gap only exists once both are in. --- crates/arr-daemon/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/arr-daemon/src/main.rs b/crates/arr-daemon/src/main.rs index f8c8b9d..bf8c0b2 100644 --- a/crates/arr-daemon/src/main.rs +++ b/crates/arr-daemon/src/main.rs @@ -492,7 +492,7 @@ fn subtitle_action(config: &Config, notifier: &Notifier) -> Result