From 2edfcba85e2cf98b89c6c8c543e91416573067a2 Mon Sep 17 00:00:00 2001 From: Shig beard Date: Wed, 12 Jul 2017 11:22:10 +1000 Subject: [PATCH] Fixed my own issue, #1524 As outlined in GameServerManagers/LinuxGSM#1524, the PushBullet alert script was somehow printing the same text twice in a single field. By removing the reply variable from both the fn_rawurlencode() function and from the variables used not 3 lines down, we produce the intended alert. --- lgsm/functions/alert_pushbullet.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/alert_pushbullet.sh b/lgsm/functions/alert_pushbullet.sh index 0b209fe07..9a632899b 100644 --- a/lgsm/functions/alert_pushbullet.sh +++ b/lgsm/functions/alert_pushbullet.sh @@ -24,12 +24,11 @@ fn_rawurlencode() { esac encoded+="${o}" done - echo "${encoded}" # You can either set a return variable (FASTER) - REPLY="${encoded}" #+or echo the result (EASIER)... or both... :p + echo "${encoded}" # If echo is faster, let's just echo it. } -pbalertbody=$(fn_rawurlencode "${alertbody}"; echo ${REPLY}) -pbalertsubject=$(fn_rawurlencode "${alertsubject}"; echo ${REPLY}) +pbalertbody=$(fn_rawurlencode "${alertbody}") +pbalertsubject=$(fn_rawurlencode "${alertsubject}") fn_print_dots "Sending Pushbullet alert" sleep 1