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-media.el | |
parent | 377c2ecb0a423ff676f7f2a3695bcb7a7883df57 (diff) |
eq for symbols, string= for strings
Diffstat (limited to 'lisp/mastodon-media.el')
-rw-r--r-- | lisp/mastodon-media.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-media.el b/lisp/mastodon-media.el index 620aa51..2ec498e 100644 --- a/lisp/mastodon-media.el +++ b/lisp/mastodon-media.el @@ -449,8 +449,8 @@ Replace them with the referenced image." (put-text-property start end 'media-state 'loading) (mastodon-media--load-image-from-url image-url media-type start (- end start)) - (when (or (equal type "gifv") - (equal type "video")) + (when (or (string= type "gifv") + (string= type "video")) (mastodon-media--moving-image-overlay start end)))))))) ;; (defvar-local mastodon-media--overlays nil |