get new access token ~60 seconds before old one times out

This commit is contained in:
Luke Woloszyn 2016-07-27 08:10:45 -07:00
parent 3f87a8b879
commit ff7b0f3e2a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class SpotifyClientCredentials(object):
def _is_token_expired(self, token_info):
now = int(time.time())
return token_info['expires_at'] < now
return token_info['expires_at'] - now < 60
def _add_custom_values_to_token_info(self, token_info):
"""