From 64af0209b75bf0793446cf9d32fba8b140ba9150 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 21 May 2020 20:50:54 +0300 Subject: [PATCH] Suggest delete-session when trying to logout without connection. Fixes #98 --- commands.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/commands.go b/commands.go index f9b06cb..b7d51c3 100644 --- a/commands.go +++ b/commands.go @@ -121,7 +121,9 @@ func (handler *CommandHandler) CommandMux(ce *CommandEvent) { handler.CommandDevTest(ce) case "set-pl": handler.CommandSetPowerLevel(ce) - case "login-matrix", "logout", "sync", "list", "open", "pm": + case "logout": + handler.CommandLogout(ce) + case "login-matrix", "sync", "list", "open", "pm": if !ce.User.HasSession() { ce.Reply("You are not logged in. Use the `login` command to log into WhatsApp.") return @@ -133,8 +135,6 @@ func (handler *CommandHandler) CommandMux(ce *CommandEvent) { switch ce.Command { case "login-matrix": handler.CommandLoginMatrix(ce) - case "logout": - handler.CommandLogout(ce) case "sync": handler.CommandSync(ce) case "list": @@ -229,6 +229,9 @@ func (handler *CommandHandler) CommandLogout(ce *CommandEvent) { if ce.User.Session == nil { ce.Reply("You're not logged in.") return + } else if !ce.User.IsConnected() { + ce.Reply("You are not connected to WhatsApp. Use the `reconnect` command to reconnect, or `delete-session` to forget all login information.") + return } puppet := handler.bridge.GetPuppetByJID(ce.User.JID) if puppet.CustomMXID != "" {