aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--global-functions9
1 files changed, 8 insertions, 1 deletions
diff --git a/global-functions b/global-functions
index 2d25b34..5aab671 100644
--- a/global-functions
+++ b/global-functions
@@ -744,6 +744,7 @@
:global CertificateAvailable;
:global LogPrintExit;
+ :global SymbolForNotification;
:global UrlEncode;
:local ChatId $TelegramChatId;
@@ -755,7 +756,13 @@
:return false;
}
- :local Text [ $UrlEncode ("[" . $Identity . "] " . $Subject . "\n\n" . $Message) ];
+ :local Text ("[" . $Identity . "] " . $Subject . "\n\n" . $Message);
+ :if ([ :len $Text ] > 3968) do={
+ :set Text ([ :pick $Text 0 3840 ] . "...\n\n" . [ $SymbolForNotification "warning-sign" ] . \
+ "The Telegram message was too long and has been truncated.");
+ }
+ :set Text [ $UrlEncode $Text ];
+
:do {
:if ([ $CertificateAvailable "Go Daddy Secure Certificate Authority - G2" ] = false) do={
$LogPrintExit warning ("Downloading required certificate failed.") true;