fix: 编辑计划任务和病毒扫描告警问题处理 (#7058)

This commit is contained in:
2024-11-14 21:52:37 +08:00 committed by GitHub
parent d04a35565e
commit e1bdd215b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 22 deletions

View File

@ -249,7 +249,6 @@ func (c *ClamService) Update(req dto.ClamUpdate) error {
if err := clamRepo.Update(req.ID, upMap); err != nil {
return err
}
if req.AlertCount != 0 {
updateAlert := dto.CreateOrUpdateAlert{
AlertTitle: req.AlertTitle,
AlertType: "clams",
@ -260,7 +259,6 @@ func (c *ClamService) Update(req dto.ClamUpdate) error {
if err != nil {
return err
}
}
return nil
}

View File

@ -316,7 +316,6 @@ func (u *CronjobService) Update(id uint, req dto.CronjobUpdate) error {
if err != nil {
return err
}
if req.AlertCount != 0 {
updateAlert := dto.CreateOrUpdateAlert{
AlertTitle: req.AlertTitle,
AlertType: cronModel.Type,
@ -327,7 +326,6 @@ func (u *CronjobService) Update(id uint, req dto.CronjobUpdate) error {
if err != nil {
return err
}
}
return nil
}