diff --git a/authentication/models.py b/authentication/models.py index 0d1f5af..2dcb694 100644 --- a/authentication/models.py +++ b/authentication/models.py @@ -233,8 +233,8 @@ class GitcoinPassportConnection(BaseThirdPartyConnection): @property def score(self): - score_tuple = self.driver.get_score(self.user_wallet_address) - return score_tuple[0] if score_tuple else 0.0 + _score = self.driver.submit_passport(self.user_wallet_address) + return _score @receiver(pre_save, sender=GitcoinPassportConnection)