aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-29 15:47:22 +0100
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-29 15:47:22 +0100
commit7fd6a014a7b7301c03a13e5561d92f9f7e6ca208 (patch)
tree827ca93bb0ed6d7deb89d57a49848d4672e95a82 /lisp/mastodon-tl.el
parent65102c25d97212387a9699efd6253117366f5181 (diff)
add var scheduled-id, so we can cancel it if we reschedule
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 70e882e..8ce2333 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -1931,6 +1931,7 @@ NO-CONFIRM means don't ask, just do."
"Edit scheduled status as new toot."
(interactive)
(let* ((toot (get-text-property (point) 'scheduled-json))
+ (id (alist-get 'id toot))
(scheduled (alist-get 'scheduled_at toot))
(params (alist-get 'params toot))
(text (alist-get 'text params))
@@ -1945,7 +1946,7 @@ NO-CONFIRM means don't ask, just do."
(insert text)
;; adopt properties from scheduled toot:
(mastodon-toot--set-toot-properties reply-id visibility cw
- scheduled lang)))
+ lang scheduled id)))
;;; FILTERS