fix: Update account status to confirmed

pull/15075/head
wangruidong 2025-03-19 18:28:51 +08:00
parent 365dbf6e14
commit 8a3844098b
1 changed files with 1 additions and 1 deletions

View File

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