[bugfix] Fix setting bot on/off

This commit is contained in:
tobi 2025-04-11 12:04:16 +02:00
commit e89ce8d43b
5 changed files with 88 additions and 22 deletions

View file

@ -77,8 +77,16 @@ func (p *Processor) Update(ctx context.Context, account *gtsmodel.Account, form
acctColumns = append(acctColumns, "discoverable")
}
if form.Bot != nil {
account.ActorType = gtsmodel.AccountActorTypeService
if bot := form.Bot; bot != nil {
if *bot {
// Mark account as an Application.
// See: https://www.w3.org/TR/activitystreams-vocabulary/#dfn-application
account.ActorType = gtsmodel.AccountActorTypeApplication
} else {
// Mark account as a Person.
// See: https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person
account.ActorType = gtsmodel.AccountActorTypePerson
}
acctColumns = append(acctColumns, "actor_type")
}