Skip to content

Commit

Permalink
restore password strip to 15 characters (PokemonGoF#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
ollmer authored and 6iz committed Jul 21, 2016
1 parent 365a61f commit b3e2290
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pogom/pgoapi/auth_ptc.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def login(self, username, password):
'execution': jdata['execution'],
'_eventId': 'submit',
'username': username,
'password': password,
'password': password[:15],
}
r1 = self._session.post(self.PTC_LOGIN_URL, data=data, headers=head)

Expand Down Expand Up @@ -94,4 +94,4 @@ def login(self, username, password):
self._login = True

return True


0 comments on commit b3e2290

Please sign in to comment.