From 64119e132e14930d628a9187504c671930a03131 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 12 Nov 2023 12:52:00 -0300 Subject: [PATCH] Fix bugs --- gateway/src/api/routes/flights.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gateway/src/api/routes/flights.py b/gateway/src/api/routes/flights.py index 56b6f60..cc97a82 100644 --- a/gateway/src/api/routes/flights.py +++ b/gateway/src/api/routes/flights.py @@ -90,5 +90,6 @@ async def get_flights( ) if status < 200 or status > 204: 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