diff --git a/sanic/request.py b/sanic/request.py index f08cb657..44669838 100644 --- a/sanic/request.py +++ b/sanic/request.py @@ -127,7 +127,7 @@ class Request(dict): try: if content_type == 'application/x-www-form-urlencoded': self.parsed_form = RequestParameters( - parse_qs(self.body.decode('utf-8'), encoding='latin1')) + parse_qs(self.body.decode('latin1'), encoding='latin1')) elif content_type == 'multipart/form-data': # TODO: Stream this instead of reading to/from memory boundary = parameters['boundary'].encode('utf-8')