diff options
author | 2024-06-18 18:18:35 +0200 | |
---|---|---|
committer | 2024-06-18 18:18:35 +0200 | |
commit | 4ce5c37df5b69b09c6759ef751eb39a8bc839094 (patch) | |
tree | 76974b8d501623ceb2059276eeeb02a62371b2e3 /internal/api/client/notifications/notificationsget.go | |
parent | [feature/frontend] Reports frontend v2 (#3022) (diff) | |
download | gotosocial-4ce5c37df5b69b09c6759ef751eb39a8bc839094.tar.xz |
[bugfix] rename `include_types[]` to `types[]` (#3023)
Diffstat (limited to 'internal/api/client/notifications/notificationsget.go')
-rw-r--r-- | internal/api/client/notifications/notificationsget.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/notifications/notificationsget.go b/internal/api/client/notifications/notificationsget.go index 533932d11..f7bcf1994 100644 --- a/internal/api/client/notifications/notificationsget.go +++ b/internal/api/client/notifications/notificationsget.go @@ -171,7 +171,7 @@ func (m *Module) NotificationsGETHandler(c *gin.Context) { c.Query(SinceIDKey), c.Query(MinIDKey), limit, - c.QueryArray(IncludeTypesKey), + c.QueryArray(TypesKey), c.QueryArray(ExcludeTypesKey), ) if errWithCode != nil { |