Skip to content

Commit b0e66b4

Browse files
authoredDec 11, 2024
fix broken fix ... (#29)
1 parent 48543af commit b0e66b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/bokeh_fastapi/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def get_session(
6363
)
6464

6565
headers = dict(request.headers)
66-
cookies = {name: cookie.value for name, cookie in request.cookies}
66+
cookies = {name: cookie.value for name, cookie in request.cookies.items()}
6767

6868
if app.include_headers is None:
6969
excluded_headers = app.exclude_headers or []

0 commit comments

Comments
 (0)