From f73790a570c6c1bb58642cfbce80c2f21e103863 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 23 Jul 2021 13:54:40 -0600 Subject: [PATCH] Update isTied endpoint to return data rather than nothing on success --- src/endpoints/management/is_tied.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/endpoints/management/is_tied.ts b/src/endpoints/management/is_tied.ts index 027a4f5..5fd9210 100644 --- a/src/endpoints/management/is_tied.ts +++ b/src/endpoints/management/is_tied.ts @@ -43,6 +43,6 @@ export default { return h.response(r.data).code(r.status); }; - return h.response().code(200); + return h.response({ result: `No Tie` }).code(200); }, } \ No newline at end of file