emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/mastodon ee33bd1d2d 22/45: toot--send: check for media wit


From: ELPA Syncer
Subject: [nongnu] elpa/mastodon ee33bd1d2d 22/45: toot--send: check for media with media-attachment-ids for speed
Date: Thu, 1 Feb 2024 10:00:55 -0500 (EST)

branch: elpa/mastodon
commit ee33bd1d2d4f095fe77b26246a71270ef533e735
Author: marty hiatt <martianhiatus@riseup.net>
Commit: marty hiatt <martianhiatus@riseup.net>

    toot--send: check for media with media-attachment-ids for speed
    
    media-attachments contains image data, so is slow.
---
 lisp/mastodon-toot.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 7833e472e8..266fa86db6 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -842,20 +842,20 @@ instance to edit a toot."
                                 ;; Pleroma instances can't handle null-valued
                                 ;; scheduled_at args, so only add if non-nil
                                 (when scheduled `(("scheduled_at" . 
,scheduled)))))
-         (args-media (when mastodon-toot--media-attachments
+         (args-media (when mastodon-toot--media-attachment-ids
                        (mastodon-http--build-array-params-alist
                         "media_ids[]"
                         mastodon-toot--media-attachment-ids)))
          (args-poll (when mastodon-toot-poll
                       (mastodon-toot--build-poll-params)))
          ;; media || polls:
-         (args (if mastodon-toot--media-attachments
+         (args (if mastodon-toot--media-attachment-ids
                    (append args-media args-no-media)
                  (if mastodon-toot-poll
                      (append args-no-media args-poll)
                    args-no-media)))
          (prev-window-config mastodon-toot-previous-window-config))
-    (cond ((and mastodon-toot--media-attachments
+    (cond ((and mastodon-toot--media-attachment-ids
                 ;; make sure we have media args
                 ;; and the same num of ids as attachments
                 (or (not args-media)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]