From c80a5be2870b8551d8c22579043d8909aa1f73ed Mon Sep 17 00:00:00 2001 From: jpgichw <122655951+jpgichw@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:43:22 +0000 Subject: [PATCH] Add link text to printf Adds link text for the following FILE_FORMAT='%s' --- dino-chat-export.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dino-chat-export.sh b/dino-chat-export.sh index 36be56d..42279cb 100755 --- a/dino-chat-export.sh +++ b/dino-chat-export.sh @@ -231,7 +231,7 @@ message_slots_to_selection() { WHEN (file_transfer.path LIKE '%.jpg') OR (file_transfer.path LIKE '%.jpeg') OR (file_transfer.path LIKE '%.jpeg') OR (file_transfer.path LIKE '%.png') OR (file_transfer.path LIKE '%.webm') OR (file_transfer.path LIKE '%.svg') THEN PRINTF('$IMAGE_FORMAT', 'files/' || path) - ELSE PRINTF('$FILE_FORMAT', 'files/' || path) + ELSE PRINTF('$FILE_FORMAT', 'files/' || path, 'files/' || path) END FROM file_transfer WHERE file_transfer.info == message.id ) -- 2.46.0