From 84addfb4de9e30df3965a2038ec18c6bc58c371f Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Sun, 30 May 2021 19:56:14 +0900 Subject: [PATCH] fix: #398 --- pages/api/v2/list/bots/new.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/v2/list/bots/new.ts b/pages/api/v2/list/bots/new.ts index fd1290a..0492f4f 100644 --- a/pages/api/v2/list/bots/new.ts +++ b/pages/api/v2/list/bots/new.ts @@ -5,7 +5,7 @@ import ResponseWrapper from '@utils/ResponseWrapper' import { BotList } from '@types' const NewList = RequestHandler().get(async (_req, res) => { - const result = await get.list.votes.load(1) + const result = await get.list.new.load(1) return ResponseWrapper(res, { code: 200, data: result }) })