Skip to content

Commit

Permalink
Fix incorrect encoding of callback URL
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlawren committed Aug 28, 2019
1 parent 6731f0a commit ce4a873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plexauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def auth_url(self, forward_url=None):
'code': self._code,
}
if forward_url:
parameters['forwardUrl'] = urllib.parse.urlencode(forward_url)
parameters['forwardUrl'] = forward_url

url = AUTH_URL.format(urllib.parse.urlencode(parameters))
return url
Expand Down

0 comments on commit ce4a873

Please sign in to comment.