summaryrefslogtreecommitdiff
path: root/django/http/request.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-12-23 05:34:36 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-12-27 09:19:56 +0100
commite42b68debf03223f5e577d80ad8ef6f6441060c0 (patch)
tree6188bbd3d988a100aa57a89cd2ca30302903513f /django/http/request.py
parent5660267e5b9cc35280e7ecbc59d67fa035e6691d (diff)
downloaddjango-e42b68debf03223f5e577d80ad8ef6f6441060c0.tar.gz
Fixed #31114 -- Fixed HttpRequest.build_absolute_uri() crash with reverse_lazy() locations.
Diffstat (limited to 'django/http/request.py')
-rw-r--r--django/http/request.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/django/http/request.py b/django/http/request.py
index 5c567b9c46..a0bdf49312 100644
--- a/django/http/request.py
+++ b/django/http/request.py
@@ -191,6 +191,9 @@ class HttpRequest:
# Make it an absolute url (but schemeless and domainless) for the
# edge case that the path starts with '//'.
location = '//%s' % self.get_full_path()
+ else:
+ # Coerce lazy locations.
+ location = str(location)
bits = urlsplit(location)
if not (bits.scheme and bits.netloc):
# Handle the simple, most common case. If the location is absolute