Skip to content

Commit

Permalink
fix variable mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
itchannel committed Nov 4, 2020
1 parent 4f1406b commit 2fcd802
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 2fcd802

Please sign in to comment.