diff options
Diffstat (limited to 'internal/processing')
-rw-r--r-- | internal/processing/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/app.go b/internal/processing/app.go index eef4fae0d..d492b3bc4 100644 --- a/internal/processing/app.go +++ b/internal/processing/app.go @@ -75,7 +75,7 @@ func (p *Processor) AppCreate(ctx context.Context, authed *oauth.Auth, form *api } // chuck it in the db - if err := p.state.DB.Put(ctx, oc); err != nil { + if err := p.state.DB.PutClient(ctx, oc); err != nil { return nil, gtserror.NewErrorInternalError(err) } |