diff options
Diffstat (limited to 'internal/web/thread.go')
-rw-r--r-- | internal/web/thread.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/web/thread.go b/internal/web/thread.go index 13dd5877d..523cf7579 100644 --- a/internal/web/thread.go +++ b/internal/web/thread.go @@ -111,7 +111,7 @@ func (m *Module) threadGETHandler(c *gin.Context) { } // Get the status itself from the processor using provided ID and authorization (if any). - status, errWithCode := m.processor.Status().Get(ctx, authed.Account, targetStatusID) + status, errWithCode := m.processor.Status().WebGet(ctx, targetStatusID) if errWithCode != nil { apiutil.WebErrorHandler(c, errWithCode, instanceGet) return |