Skip to content

Commit

Permalink
Merge pull request #511 from baroale/master
Browse files Browse the repository at this point in the history
Fix: Issue #508
  • Loading branch information
omab committed Feb 10, 2015
2 parents 89c5dd1 + e645641 commit aab2a95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion social/strategies/django_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ def request_data(self, merge=True):
if not self.request:
return {}
if merge:
data = self.request.REQUEST
data = self.request.GET
data.update(self.request.POST)
elif self.request.method == 'POST':
data = self.request.POST
else:
Expand Down

0 comments on commit aab2a95

Please sign in to comment.