From e1c069c497faf918b8fd170ab775cf4fd9dd4972 Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Sun, 28 Apr 2024 13:00:56 +0200 Subject: [PATCH] Container: fix error message. --- src/App/Container.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Container.purs b/src/App/Container.purs index 234b4ce..d51b24b 100644 --- a/src/App/Container.purs +++ b/src/App/Container.purs @@ -702,7 +702,7 @@ handleAction = case _ of handleAction $ AddNotif $ BadNotification $ "You do not have sufficient rights." -- The authentication failed. (DNSManager.MkError errmsg) -> do - handleAction $ Log $ ErrorLog $ "reason is: " <> errmsg.reason + handleAction $ Log $ ErrorLog errmsg.reason (DNSManager.MkErrorUserNotLogged _) -> do handleAction $ Log $ ErrorLog $ "The user isn't connected!" handleAction $ Log $ SystemLog $ "Trying to authenticate to fix the problem..."