From d8ccbe00fa52237f19a1a029ffd9a231be1da99e Mon Sep 17 00:00:00 2001 From: arabcoders Date: Wed, 28 Jan 2026 17:22:32 +0300 Subject: [PATCH] fix: sidecar loading for history items --- app/routes/api/history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/api/history.py b/app/routes/api/history.py index a953cca8..44337f38 100644 --- a/app/routes/api/history.py +++ b/app/routes/api/history.py @@ -95,7 +95,7 @@ async def items_list(request: Request, queue: DownloadQueue, encoder: Encoder, c continue try: - download.info.sidecar = download.get_file_sidecar() + download.info.sidecar = download.info.get_file_sidecar() except Exception: download.info.sidecar = {}