🐛 Fix deletion handle

This commit is contained in:
LittleSheep 2025-03-10 21:43:43 +08:00
parent 070fd7bb6a
commit 69be460e13

View File

@ -30,7 +30,7 @@ func (v *Server) BroadcastEvent(ctx context.Context, in *proto.EventInfo) (*prot
for _, model := range database.AutoMaintainRange {
switch model.(type) {
default:
tx.Delete(model, "account_id = ?", data)
tx.Delete(model, "account_id = ?", data.ID)
}
}
tx.Commit()