diff --git a/rowers/integrations/polar.py b/rowers/integrations/polar.py index 0adac679..9bc40472 100644 --- a/rowers/integrations/polar.py +++ b/rowers/integrations/polar.py @@ -253,8 +253,12 @@ class PolarIntegration(SyncIntegration): return 1 - def register_user(self, token): - _ = self.open() + def register_user(self, token, *args, **kwargs): + try: + _ = self.open() + except NoTokenError: + pass + authorizationstring = 'Bearer {token}'.format(token=token) headers = {