From 9c2ff0fafba94b2efe2022158efc4599923a332f Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Tue, 11 Nov 2025 17:17:56 +0100 Subject: [PATCH] missing space between read args in Insert() --- lib/database/Insert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/database/Insert b/lib/database/Insert index 3b58015..15c8184 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 -u4 -r -d$'\0' results + read -u4 -r -d $'\0' results echo "$results" } }