From 07ad241e9f744606778e35555aded58ee85637b5 Mon Sep 17 00:00:00 2001 From: mag37 Date: Tue, 28 Jan 2025 21:08:20 +0100 Subject: [PATCH] removed whale icon and changed redirection to still show errors --- notify_templates/notify_gotify.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notify_templates/notify_gotify.sh b/notify_templates/notify_gotify.sh index b88f597..49d07ae 100644 --- a/notify_templates/notify_gotify.sh +++ b/notify_templates/notify_gotify.sh @@ -14,7 +14,7 @@ send_notification() { # Setting the MessageTitle and MessageBody variable here. MessageTitle="${FromHost} - updates available." - printf -v MessageBody "🐋 Containers on $FromHost with updates available:\n$UpdToString" + printf -v MessageBody "Containers on $FromHost with updates available:\n$UpdToString" # Modify to fit your setup: GotifyToken="Your Gotify token here" @@ -24,6 +24,6 @@ send_notification() { -F "title=${MessageTitle}" \ -F "message=${MessageBody}" \ -F "priority=5" \ - -X POST "${GotifyUrl}" &> /dev/null + -X POST "${GotifyUrl}" 1> /dev/null }