From 24033d01c7e0094b24bfc18deb4cda6150657bb4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 30 Apr 2017 20:09:48 +0100 Subject: [PATCH] fixes issue #1393 --- lgsm/functions/alert_pushbullet.sh | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/alert_pushbullet.sh b/lgsm/functions/alert_pushbullet.sh index 05276b010..0b209fe07 100644 --- a/lgsm/functions/alert_pushbullet.sh +++ b/lgsm/functions/alert_pushbullet.sh @@ -8,10 +8,32 @@ local commandname="ALERT" local commandaction="Alert" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +# converts text to ascii then passes to curl. allowing special characters to be sent e.g % +# http://stackoverflow.com/a/10660730 +fn_rawurlencode() { + local string="${1}" + local strlen=${#string} + local encoded="" + local pos c o + + for (( pos=0 ; pos