fix: Update account status to confirmed

This commit is contained in:
wangruidong
2025-03-19 18:28:51 +08:00
committed by w940853815
parent 365dbf6e14
commit f6fc9b1f5c

View File

@@ -193,5 +193,5 @@ class RiskHandler:
( (
GatheredAccount.objects GatheredAccount.objects
.filter(asset=self.asset, username=self.username) .filter(asset=self.asset, username=self.username)
.update(present=True) .update(present=True, status=ConfirmOrIgnore.confirmed)
) )