From fba777ef356d1fd03561bcb047a64153a83cfce6 Mon Sep 17 00:00:00 2001 From: Adrien Date: Sat, 25 May 2024 18:17:02 +0200 Subject: [PATCH] fix --- Chat.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Chat.go b/Chat.go index 4174b6c..00b4c61 100644 --- a/Chat.go +++ b/Chat.go @@ -511,8 +511,8 @@ func EditMessageHandler(c *fiber.Ctx) error { func ClearChatHandler(c *fiber.Ctx) error { // Delete the default conversation err := edgeClient.Execute(edgeCtx, ` - DELETE Conversation - FILTER .user = global currentUser AND .name = "Default"; + DELETE Area + FILTER .conversation = global currentConversation; `) if err != nil { panic(err)