Redact cookies when logging in

This commit is contained in:
Tulir Asokan 2024-02-23 22:00:39 +02:00
parent fa23bd14e8
commit c806258b82

View file

@ -175,6 +175,7 @@ func fnLoginGoogleCookies(ce *WrappedCommandEvent) {
ce.Reply("Failed to parse cookies: %v", err) ce.Reply("Failed to parse cookies: %v", err)
return return
} }
ce.Redact()
err = ce.User.LoginGoogle(cookies, func(emoji string) { err = ce.User.LoginGoogle(cookies, func(emoji string) {
ce.Reply(emoji) ce.Reply(emoji)
}) })