summaryrefslogtreecommitdiff
path: root/oauthlib/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r--oauthlib/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py
index d5d2eae..5399dcb 100644
--- a/oauthlib/common.py
+++ b/oauthlib/common.py
@@ -379,7 +379,7 @@ class Request(object):
self.http_method = encode(http_method)
self.headers = CaseInsensitiveDict(encode(headers or {}))
self.body = encode(body)
- self.decoded_body = extract_params(encode(body))
+ self.decoded_body = extract_params(self.body)
self.oauth_params = []
self._params = {