From ffb83a2edb908a20b666ae42855f51217a7fb0c1 Mon Sep 17 00:00:00 2001 From: Troels Henriksen Date: Fri, 23 Dec 2022 16:23:19 +0100 Subject: Do not pass URL directly to message. This breaks if it contains any % characters. --- lisp/mastodon-auth.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el index 4c508a4..3de2901 100644 --- a/lisp/mastodon-auth.el +++ b/lisp/mastodon-auth.el @@ -137,7 +137,7 @@ When ASK is absent return nil." (let ((url (mastodon-auth--get-browser-login-url)) authorization-code) (kill-new url) - (message url) + (message "%s" url) (setq authorization-code (mastodon-auth--show-notice mastodon-auth--explanation "*mastodon-notice*" -- cgit v1.2.3