diff options
author | 2024-01-29 15:57:22 +0100 | |
---|---|---|
committer | 2024-01-29 14:57:22 +0000 | |
commit | aa8bbe6ad2e3908bd55bd6522524784cd4383ae2 (patch) | |
tree | bc1c3d742f2ef243936d4629aa0694affdbab5ca /internal/api/client/admin/emojisget.go | |
parent | [chore] Add a couple tests for updating list entries (#2580) (diff) | |
download | gotosocial-aa8bbe6ad2e3908bd55bd6522524784cd4383ae2.tar.xz |
[bugfix] Fix Postgres emoji delete, emoji category change (#2570)
* [bugfix] Fix Postgres emoji delete, emoji category change
* revert trace logging
* caching issue
* update tests
Diffstat (limited to 'internal/api/client/admin/emojisget.go')
-rw-r--r-- | internal/api/client/admin/emojisget.go | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/internal/api/client/admin/emojisget.go b/internal/api/client/admin/emojisget.go index 212401117..4013e1836 100644 --- a/internal/api/client/admin/emojisget.go +++ b/internal/api/client/admin/emojisget.go @@ -197,7 +197,17 @@ func (m *Module) EmojisGETHandler(c *gin.Context) { includeEnabled = true } - resp, errWithCode := m.processor.Admin().EmojisGet(c.Request.Context(), authed.Account, authed.User, domain, includeDisabled, includeEnabled, shortcode, maxShortcodeDomain, minShortcodeDomain, limit) + resp, errWithCode := m.processor.Admin().EmojisGet( + c.Request.Context(), + authed.Account, + domain, + includeDisabled, + includeEnabled, + shortcode, + maxShortcodeDomain, + minShortcodeDomain, + limit, + ) if errWithCode != nil { apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1) return |