This commit is contained in:
Miroslav Stampar
2019-05-24 15:01:43 +02:00
parent 2e193fe1ef
commit e869728972
2 changed files with 7 additions and 7 deletions

View File

@@ -286,13 +286,13 @@ class Connect(object):
if multipart:
post = multipart
else:
if not post:
chunked = False
if not post:
chunked = False
elif chunked:
post = _urllib.parse.unquote(post)
post = chunkSplitPostData(post)
elif chunked:
post = _urllib.parse.unquote(post)
post = chunkSplitPostData(post)
websocket_ = url.lower().startswith("ws")