diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-15 07:23:26 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2020-07-15 07:23:26 +0900 |
commit | 4e5e5c872fd22bc0cd27cfbf5fe94a3f9f99ed5a (patch) | |
tree | cb10b102b0a0484d4a8da4e2c6a940854601bc67 /toot.scm | |
parent | ddc5c58c414b03e5a61e0dd1c1355e92a8b59a19 (diff) |
toot: Fix condition.v0.1.0
* toot.scm(display-status): Fix condition.
Diffstat (limited to 'toot.scm')
-rw-r--r-- | toot.scm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -290,8 +290,8 @@ (case (attachment-type att) ((image) (cond - (((and (display-image?) - (fetch-attachment-preview-pict att))) + ((and (display-image?) + (fetch-attachment-preview-pict att)) => identity) (else "MEDIA: IMAGE"))) |