diff --git a/internal/db/pg.go b/internal/db/pg.go index 92d6396..e73ef21 100644 --- a/internal/db/pg.go +++ b/internal/db/pg.go @@ -384,11 +384,11 @@ func (ps *postgresService) AccountToMastoSensitive(a *model.Account) (*mastotype fields := []mastotypes.Field{} for _, f := range a.Fields { mField := mastotypes.Field{ - Name: f.Name, - Value: f.Value, + Name: f.Name, + Value: f.Value, } if !f.VerifiedAt.IsZero() { - mField.VerifiedAt = f.VerifiedAt.Format(time.RFC3339) + mField.VerifiedAt = f.VerifiedAt.Format(time.RFC3339) } fields = append(fields, mField) }