aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/users/my-abuses.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/users/my-abuses.ts')
-rw-r--r--server/controllers/api/users/my-abuses.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/users/my-abuses.ts b/server/controllers/api/users/my-abuses.ts
index e43fc483e..fcd0ce3fc 100644
--- a/server/controllers/api/users/my-abuses.ts
+++ b/server/controllers/api/users/my-abuses.ts
@@ -43,6 +43,6 @@ async function listMyAbuses (req: express.Request, res: express.Response) {
43 43
44 return res.json({ 44 return res.json({
45 total: resultList.total, 45 total: resultList.total,
46 data: resultList.data.map(d => d.toFormattedAdminJSON()) 46 data: resultList.data.map(d => d.toFormattedUserJSON())
47 }) 47 })
48} 48}