From 2a2554e7a3ec5eb58fa1958bebd680511a8c5c0c Mon Sep 17 00:00:00 2001 From: Alen Masic Date: Fri, 16 Nov 2018 17:31:59 +0100 Subject: [PATCH] fix #69 --- shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.go b/shell.go index e749908..87c202f 100644 --- a/shell.go +++ b/shell.go @@ -2187,7 +2187,7 @@ GLOBAL OPTIONS: if len(words) == 0 { continue } - NewEvent("shell", words[0]).SetAuthor(myself).SetArg("interactive", true).SetArg("args", words[1:]).Log(db) + NewEvent("shell", words[0]).SetArg("interactive", true).SetArg("args", words[1:]).Log(db) if err := app.Run(append([]string{"config"}, words...)); err != nil { if cliErr, ok := err.(*cli.ExitError); ok { if cliErr.ExitCode() != 0 {