diff options
author | martianh <martianh@noreply.codeberg.org> | 2022-12-23 23:29:11 +0000 |
---|---|---|
committer | martianh <martianh@noreply.codeberg.org> | 2022-12-23 23:29:11 +0000 |
commit | 599cd053cdf4104c1739c40024a6586646a61eb4 (patch) | |
tree | c5adab7d11341e6f582e7bae609e61ce5989f7eb | |
parent | 7a49c1afdf02b2f152b852e9f94f56af43813599 (diff) | |
parent | ffb83a2edb908a20b666ae42855f51217a7fb0c1 (diff) |
Merge pull request 'Do not pass URL directly to message.' (#361) from sigkill/mastodon.el:no-message into develop
Reviewed-on: https://codeberg.org/martianh/mastodon.el/pulls/361
-rw-r--r-- | lisp/mastodon-auth.el | 2 |
1 files changed, 1 insertions, 1 deletions
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*" |