Fix bugs
This commit is contained in:
parent
97b99fcd64
commit
64119e132e
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue