From c7b8509afb0dab1018a76507bb0cee4f0b7680e9 Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Thu, 9 Dec 2021 02:19:44 +0500 Subject: [PATCH] =?UTF-8?q?added=20=F0=9F=9F=A2=20and=20=F0=9F=94=B4=20emo?= =?UTF-8?q?jis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bml-status-tg-bot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bml-status-tg-bot b/bml-status-tg-bot index a70c25c..f66c5d6 100644 --- a/bml-status-tg-bot +++ b/bml-status-tg-bot @@ -1,17 +1,17 @@ #!/bin/bash source .env -STATUS_OLD=$(curl -s $BML_URL/login | jq .code) +#STATUS_OLD=$(curl -s $BML_URL/login | jq .code) while true; do STATUS=$(curl -s $BML_URL/login | jq .code) if [ "$STATUS" = "0" ] then - TGTEXT="BML%20Online" + TGTEXT="🟢BML%20Online" elif [ "$STATUS" = "37" ] then - TGTEXT="BML%20Down" + TGTEXT="🔴BML%20Down" else TGTEXT="Unknown%20Error" fi