diff options
author | H Durer <h.duerer@gmail.com> | 2018-03-02 07:00:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-02 07:00:19 +0000 |
commit | 114c611f88e1a0188cb6541e9a185dbdc03ebf3a (patch) | |
tree | ebc64bee24db9c04a9c255815a75ab38f2edd620 /lisp/mastodon-tl.el | |
parent | db1ae6f94e13475b9fae16bbe290d280f12feeb1 (diff) | |
parent | 3eae90ac03aea4c609f2cf2660b85338a33d9f89 (diff) |
Merge pull request #160 from alexjgriffith/fix-buffer-switching
Fixes buffer switching issue and closes issue #158
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index dbc815f..2f26b55 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -297,7 +297,7 @@ also render the html" preview-url) (concat "Media::" preview-url "\n")))) media-attachements ""))) - (if (not (and (not mastodon-tl--display-media-p) + (if (not (and mastodon-tl--display-media-p (equal media-string ""))) (concat "\n" media-string) ""))) |