branch: elpa/mastodon
commit fed18ea3ec384d453e992913bb216487271fedb9
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>

    quotes: strip extra newline after stripping URL.
---
 lisp/mastodon-tl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 749edddf64..662bb8b0f3 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -1887,7 +1887,7 @@ Runs `mastodon-tl--render-text' and fetches poll or 
media."
                            (with-temp-buffer ;; strip quoted toot URL:
                              (insert rendered)
                              (goto-char (point-min))
-                             (kill-line)
+                             (kill-line 2)
                              (buffer-string))))
          (poll-p (mastodon-tl--field 'poll toot))
          (media-p (mastodon-tl--field 'media_attachments toot)))

Reply via email to