From 27635f843205b2c5839581e441a1dc1fa5381ced Mon Sep 17 00:00:00 2001 From: Nirvana Date: Fri, 15 May 2026 16:18:21 +0200 Subject: [PATCH] Backend add favorites --- service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.py b/service.py index 25f603b..6a14aad 100644 --- a/service.py +++ b/service.py @@ -1720,7 +1720,7 @@ class UltimateService: setup_recordings_routes(self.app, self.manager, self) setup_timers_routes(self.app, self.manager, self) setup_bookmarks_routes(self.app, self.manager, self) - setup_favorites_routes(app, manager, service) + setup_favorites_routes(self.app, self.manager, self) # Core UI routes @self.app.route("/config")