diff options
-rw-r--r-- | lisp/mastodon-tl.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index d8cb865..0bfa613 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1715,7 +1715,9 @@ call this function after it is set or use something else." ((mastodon-tl--endpoint-str-= "instance") 'instance-description) ((string= "*mastodon-toot-edits*" buffer-name) - 'toot-edits)))) + 'toot-edits) + ((string= "*masto-image*" (buffer-name)) + 'mastodon-image)))) (defun mastodon-tl--buffer-type-eq (type) "Return t if current buffer type is equal to symbol TYPE." |