mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-31 08:46:14 -06:00
beep boop
This commit is contained in:
parent
de8df06c63
commit
76904afdca
2 changed files with 234 additions and 24 deletions
|
|
@ -121,10 +121,10 @@ func (p *Processor) Create(
|
|||
return nil, gtserror.NewErrorInternalError(err)
|
||||
}
|
||||
|
||||
// Process policy AFTER visibility as it
|
||||
// relies on status.Visibility being set.
|
||||
if err := processInteractionPolicy(form, requester.Settings, status); err != nil {
|
||||
return nil, gtserror.NewErrorInternalError(err)
|
||||
// Process policy AFTER visibility as it relies
|
||||
// on status.Visibility and form.Visibility being set.
|
||||
if errWithCode := processInteractionPolicy(form, requester.Settings, status); errWithCode != nil {
|
||||
return nil, errWithCode
|
||||
}
|
||||
|
||||
if err := processLanguage(form, requester.Settings.Language, status); err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue