Compare commits

..

2 Commits

Author SHA1 Message Date
shokollm
2800e140ac fix: accumulate message words instead of overwriting in cmd_continue
The for loop was overwriting message each iteration, causing only
the last word to survive. Changed to accumulate all words with
proper spacing.

Fixes #225
2026-04-07 13:55:47 +00:00
2beb3adb14 fix: remove unnecessary rm of msg file to avoid race condition (#200) 2026-04-07 05:29:07 +02:00

View File

@@ -398,7 +398,7 @@ cmd_continue() {
if [ -z "$session_name" ]; then if [ -z "$session_name" ]; then
session_name="$arg" session_name="$arg"
else else
message="$arg" message="${message}${message:+ }${arg}"
fi fi
done done