Skip to content

Commit

Permalink
Merge pull request #13 from itchannel/active_dev
Browse files Browse the repository at this point in the history
fix variable mismatch
  • Loading branch information
itchannel authored Nov 4, 2020
2 parents c54442a + 2fcd802 commit 4369efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/fordpass/fordpass_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def refreshToken(self, token):
result["expiry_date"] = time.time() + result['expires_in']
self.writeToken(result)
self.token = result['access_token']
self.refreshToken = result["refresh_token"]
self.refresh_token = result["refresh_token"]
self.expiresAt = time.time() + result['expires_in']

def __acquireToken(self):
Expand Down

0 comments on commit 4369efb

Please sign in to comment.