From c806258b82561879eba1c210fda8a030fe2351f5 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 23 Feb 2024 22:00:39 +0200 Subject: [PATCH] Redact cookies when logging in --- commands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.go b/commands.go index cdc601b..7abc494 100644 --- a/commands.go +++ b/commands.go @@ -175,6 +175,7 @@ func fnLoginGoogleCookies(ce *WrappedCommandEvent) { ce.Reply("Failed to parse cookies: %v", err) return } + ce.Redact() err = ce.User.LoginGoogle(cookies, func(emoji string) { ce.Reply(emoji) })