From 4f8c33e880c45f40cc2e1f88a623b12cb98e57bb Mon Sep 17 00:00:00 2001 From: vaporvee Date: Mon, 19 Feb 2024 12:50:51 +0100 Subject: [PATCH] dumb idea reverting --- manage_data.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/manage_data.go b/manage_data.go index cc7ac82..2dc8318 100644 --- a/manage_data.go +++ b/manage_data.go @@ -89,6 +89,5 @@ func getTagName(guildID string, tagID string) string { func getTagContent(guildID string, tagID string) string { var tagContent string db.QueryRow("SELECT tag_content FROM tags WHERE guild_id = $1 AND tag_id = $2", guildID, tagID).Scan(&tagContent) - - return getTagName(guildID, tagID) + ":\n " + tagContent + return tagContent }