From d5182c2dacde7c64adaff834af72d83d2178f9c4 Mon Sep 17 00:00:00 2001 From: cage Date: Sun, 24 Dec 2023 22:34:09 +0100 Subject: [PATCH] - fixxed call to 'member'. --- src/gui/client/main-window.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/client/main-window.lisp b/src/gui/client/main-window.lisp index 6ac76eb..356496a 100644 --- a/src/gui/client/main-window.lisp +++ b/src/gui/client/main-window.lisp @@ -476,7 +476,7 @@ (scale-jpeg main-window file-path)) ((member mime-type '("image/x-tga" "image/x-targa") - #'string=) + :test #'string=) (scale-targa main-window file-path)) ((string= mime-type +mime-type-png+) (scale-png main-window file-path))