fix(database): update function
This commit is contained in:
parent
d69d1b68f6
commit
1ae76234b2
@ -120,7 +120,7 @@ func UpdatePostReport(ctx context.Context, postReport models.PostReport) error {
|
||||
ReportState: postReport.ReportState,
|
||||
}
|
||||
|
||||
result := client.WithContext(ctx).Model(&updatePost).Update("deleted_at", gorm.DeletedAt{})
|
||||
result := client.WithContext(ctx).Model(&updatePost).Updates(updatePost)
|
||||
if result.Error != nil {
|
||||
if errors.Is(result.Error, gorm.ErrRecordNotFound) {
|
||||
return utils.HandleError(ctx, span, localLogger, &otterError.Database{Reason: otterError.NoDataFound})
|
||||
|
Loading…
Reference in New Issue
Block a user