From c6ef55cb0c8c2a2b3cd4b6b9140f1ab9f347993d Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 12 May 2024 20:57:57 -0400 Subject: [PATCH] Add a separator before the 'Posted from' message if showClient is set to true. --- ratatoskr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ratatoskr.sh b/ratatoskr.sh index ec267db..2f543dc 100755 --- a/ratatoskr.sh +++ b/ratatoskr.sh @@ -130,7 +130,7 @@ post_status() { statusContent_type="${statusContent_type:-text/markdown}" if [[ "${showClient}" == "true" ]]; then if [[ "${statusContent_type}" == "text/markdown" ]]; then - statusText+=$'\n'$'\n'"[Posted from Ratatoskr](https://git.stormux.org/storm/ratatoskr)" + statusText+=$'\n'$'\n''----'$'\n'"[Posted from Ratatoskr](https://git.stormux.org/storm/ratatoskr)" else statusText+=$'\n'$'\n'"Posted from Ratatoskr: https://git.stormux.org/storm/ratatoskr" fi