diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-08-22 11:06:07 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-08-22 11:06:07 +0200 |
commit | beeb8f3b2ebe25e8e3fb92e6f030cec39b818cec (patch) | |
tree | cd927217791cec57d88d98decbd57109d89105c6 /lisp/mastodon-http.el | |
parent | 377c2ecb0a423ff676f7f2a3695bcb7a7883df57 (diff) |
eq for symbols, string= for strings
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r-- | lisp/mastodon-http.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el index 39c1036..fbae8a7 100644 --- a/lisp/mastodon-http.el +++ b/lisp/mastodon-http.el @@ -365,7 +365,7 @@ item uploaded, and `mastodon-toot--update-status-fields' is run." ;; this is how the mangane akkoma web client does it ;; and it seems easier than the other options! (when (and caption - (not (equal caption (alist-get 'description data)))) + (not (string= caption (alist-get 'description data)))) (let ((url (mastodon-http--api (format "media/%s" id)))) ;; (message "PUTting image description") (mastodon-http--put url desc))) |