-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Labels
Milestone
Description
I'll also add
request.full_pathfor consistency with these:datasette/datasette/utils/asgi.py
Lines 77 to 90 in 97fb10c
@property def path(self): if self.scope.get("raw_path") is not None: return self.scope["raw_path"].decode("latin-1") else: path = self.scope["path"] if isinstance(path, str): return path else: return path.decode("utf-8") @property def query_string(self): return (self.scope.get("query_string") or b"").decode("latin-1")
Originally posted by @simonw in #1179 (comment)
Reactions are currently unavailable