From 33265ce970f543f9a539d7c14bf4a022e43d7da6 Mon Sep 17 00:00:00 2001 From: pmow Date: Sun, 21 Feb 2016 08:29:04 -0500 Subject: [PATCH] updated to reflect no longer escaping parameters --- External-Scripts-(experimental).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/External-Scripts-(experimental).md b/External-Scripts-(experimental).md index 2369731..93d4861 100644 --- a/External-Scripts-(experimental).md +++ b/External-Scripts-(experimental).md @@ -8,6 +8,6 @@ URL="https://api.telegram.org/bot$KEY/sendMessage" TEXT="Crap, your server is transcoding something: ! Go check on it, noob!" - if [ "$1" != '"Direct Play"' ] && [ "$1" != '"Copy"' ]; then + if [ "$1" != "Direct Play" ] && [ "$1" != "Copy" ]; then curl -s --max-time $TIMEOUT -d "chat_id=$USERID&disable_web_page_preview=1&text=$TEXT" $URL > /dev/null fi \ No newline at end of file