diff --git a/modules/cragr/web/pages.py b/modules/cragr/web/pages.py index 91322ec58dd6e0c7a20c3e0106ce0ce51117ccc0..12b194767c99805cfa65b1fd9282aa0466d53a11 100644 --- a/modules/cragr/web/pages.py +++ b/modules/cragr/web/pages.py @@ -754,6 +754,12 @@ def obj__liquidity_url(self): obj__form = None + def validate(self, obj): + # Skip accounts with '0' as id + # They redirect to another cragr website + # The accounts contained by this space already appear in the accounts list + return Field('id')(self) != '0' + class TransactionsPage(MyLoggedPage, BasePage): def get_missing_balance(self):