File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -638,13 +638,13 @@ def verify_state(expected_state: ConnectionState) -> None:
638
638
639
639
# BOOKMARKS!
640
640
if ".clientdata_url_search" in message_obj ["data" ]:
641
- self .bookmark ._restore_context = (
641
+ self .bookmark ._restore_context_value = (
642
642
await RestoreContext .from_query_string (
643
643
message_obj ["data" ][".clientdata_url_search" ]
644
644
)
645
645
)
646
646
else :
647
- self .bookmark ._restore_context = RestoreContext ()
647
+ self .bookmark ._restore_context_value = RestoreContext ()
648
648
649
649
# When a reactive flush occurs, flush the session's outputs,
650
650
# errors, etc. to the client. Note that this is
@@ -1035,7 +1035,7 @@ def _request_flush(self) -> None:
1035
1035
1036
1036
async def _flush (self ) -> None :
1037
1037
with session_context (self ):
1038
- # This is the only place in the session where the restoreContext is flushed.
1038
+ # This is the only place in the session where the RestoreContext is flushed.
1039
1039
if self .bookmark ._restore_context :
1040
1040
self .bookmark ._restore_context .flush_pending ()
1041
1041
# Flush the callbacks
You can’t perform that action at this time.
0 commit comments