From 096ab5ef9d93999acd1dea68af45353737e90f0b Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Tue, 11 Nov 2025 05:23:32 +0100 Subject: [PATCH] Insert(): missing `-r` --- lib/database/Insert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/database/Insert b/lib/database/Insert index 8c75650..3b58015 100644 --- a/lib/database/Insert +++ b/lib/database/Insert @@ -36,7 +36,7 @@ Insert() { "( $insert_values );" >&3 (( no_id )) || { echo 'SELECT LAST_INSERT_ROWID();' >&3 - read -u 4 -d$'\0' results + read -u4 -r -d$'\0' results echo "$results" } }