diff options
Diffstat (limited to 'routers/api/v1/notify/repo.go')
-rw-r--r-- | routers/api/v1/notify/repo.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/api/v1/notify/repo.go b/routers/api/v1/notify/repo.go index cc66e0f743..0a75fcd30a 100644 --- a/routers/api/v1/notify/repo.go +++ b/routers/api/v1/notify/repo.go @@ -11,6 +11,7 @@ import ( "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/context" + "code.gitea.io/gitea/modules/convert" "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/routers/api/v1/utils" ) @@ -127,7 +128,7 @@ func ListRepoNotifications(ctx *context.APIContext) { return } - ctx.JSON(http.StatusOK, nl.APIFormat()) + ctx.JSON(http.StatusOK, convert.ToNotifications(nl)) } // ReadRepoNotifications mark notification threads as read on a specific repo |