-
Notifications
You must be signed in to change notification settings - Fork 323
Fix string type issues with SOAP/Twisted #685
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -183,7 +183,7 @@ def _reconstruct_url(request): | |
| url_scheme = 'http' | ||
|
|
||
| uri = _decode_path(request.uri) | ||
| return ''.join([url_scheme, "://", server_name, uri]) | ||
| return ''.join([url_scheme, "://", server_name, uri.decode('utf-8')]) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How do we know that uri is encoded with utf-8 here?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought it was assumed as we create a "context" with utf-8 content type at line 676, but it concerns more the content than the headers. |
||
|
|
||
|
|
||
| class _Transformer(object): | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.