aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/mastodon-auth.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index a35dc5a..ed9b5cb 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -116,7 +116,7 @@ STATUS is passed by `url-retrieve'."
(defun mastodon-auth--user-and-passwd ()
"Prompt for user email and password."
(let ((email (read-string "Email: "))
- (passwd (read-string "Password: ")))
+ (passwd (read-passwd "Password: ")))
(cons email passwd)))
(defun mastodon--get-access-token ()