This commit is contained in:
Santiago Lo Coco 2023-11-12 12:52:00 -03:00
parent 97b99fcd64
commit 64119e132e
1 changed files with 2 additions and 1 deletions

View File

@ -90,5 +90,6 @@ async def get_flights(
) )
if status < 200 or status > 204: if status < 200 or status > 204:
raise HTTPException(status_code=status, detail=response) raise HTTPException(status_code=status, detail=response)
res.headers["x-count"] = headers["x-count"] if "x-count" in headers:
res.headers["x-count"] = headers["x-count"]
return response return response