fix getting history for card accounts
This commit is contained in:
parent
69a78db3b3
commit
d29ab5f7df
1 changed files with 4 additions and 0 deletions
|
|
@ -170,6 +170,10 @@ class Cragr(Browser):
|
||||||
if account._link is None:
|
if account._link is None:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# card accounts need to get an updated link
|
||||||
|
if account.type == Account.TYPE_CARD:
|
||||||
|
account = self.get_account(account.id)
|
||||||
|
|
||||||
date_guesser = LinearDateGuesser()
|
date_guesser = LinearDateGuesser()
|
||||||
self.location(account._link)
|
self.location(account._link)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue