From 000491a1501b8392b323b010ec0142eefe69c743 Mon Sep 17 00:00:00 2001
From: Luca Bilke <luca@bil.ke>
Date: Thu, 12 Dec 2024 14:55:11 +0100
Subject: [PATCH] remove workaround for multiple image bug in ST

---
 common/.config/lf/preview | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/.config/lf/preview b/common/.config/lf/preview
index 3c3f64d7..36317eee 100755
--- a/common/.config/lf/preview
+++ b/common/.config/lf/preview
@@ -37,9 +37,9 @@ cached_text() {
 
 cached_image() {
     if [ -f "$CACHE" ]; then
-        $CHAFA "$CACHE" && exit 1
+        $CHAFA "$CACHE"
     else
-        run "$@" | tee -p "$CACHE" | $CHAFA && exit 1
+        run "$@" | tee -p "$CACHE" | $CHAFA
     fi
 }
 
@@ -78,7 +78,7 @@ mimetest() {
             ;;
         */epub+zip) cached_image gnome-epub-thumbnailer -s 1024 "$f" "$CACHE" ;;
         image/svg+xml) cached_image inkscape --convert-dpi-method=none -o "${CACHE}.png" --export-overwrite -D --export-png-color-mode=RGBA_16 "$f" ;;
-        image/*) $CHAFA "$f" && exit 1 ;;
+        image/*) $CHAFA "$f" ;;
         */pdf) cached_image pdftoppm -jpeg -f 1 -singlefile "$f" ;;
         video/*) cached_image ffmpegthumbnailer -s 0 -i "$f" -o "/dev/stdout" ;;
         */vnd.oasis.opendocument.text) cached_text odt2txt "$f" ;;