diff --git a/api/src/controllers/notifications.ts b/api/src/controllers/notifications.ts index 507eae6b33..9b0a52910d 100644 --- a/api/src/controllers/notifications.ts +++ b/api/src/controllers/notifications.ts @@ -70,7 +70,7 @@ const readHandler = asyncHandler(async (req, res, next) => { result = await service.readByQuery(req.sanitizedQuery); } - const meta = await metaService.getMetaForQuery('directus_presets', req.sanitizedQuery); + const meta = await metaService.getMetaForQuery('directus_notifications', req.sanitizedQuery); res.locals.payload = { data: result, meta }; return next();