Skip to content

Commit 722e6e7

Browse files
fix: remove items with tmdb id as final meta
1 parent 3c63c16 commit 722e6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/api/endpoints/catalogs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def _get_limits() -> tuple[int, int]:
195195
logger.info(f"Found {len(recommendations)} recommendations for {type}")
196196

197197
logger.info(f"Returning {len(recommendations)} items for {type}")
198-
response.headers["Cache-Control"] = "public, max-age=21600" # 6 hours
198+
response.headers["Cache-Control"] = "public, max-age=21600" # 6 hours
199199
cleaned = [_clean_meta(m) for m in recommendations]
200200
return {"metas": cleaned}
201201

0 commit comments

Comments
 (0)