From 708b1ff8835730a8e0c591d9590ff67a281b2811 Mon Sep 17 00:00:00 2001 From: dragongoose Date: Sun, 28 May 2023 16:44:31 -0400 Subject: [PATCH] Fix implementation --- routes/api/discover/discover.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api/discover/discover.go b/routes/api/discover/discover.go index 2613d12..97931e6 100644 --- a/routes/api/discover/discover.go +++ b/routes/api/discover/discover.go @@ -25,6 +25,6 @@ func Routes(route *gin.Engine) { context.Error(err) } - context.JSON(200, data) + context.JSON(200, extractor.FormatMessage(data, true)) }) }