From 4e5e5c872fd22bc0cd27cfbf5fe94a3f9f99ed5a Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Wed, 15 Jul 2020 07:23:26 +0900 Subject: toot: Fix condition. * toot.scm(display-status): Fix condition. --- toot.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toot.scm b/toot.scm index 0ce5b26..a27c052 100644 --- a/toot.scm +++ b/toot.scm @@ -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"))) -- cgit v1.2.3