From cd3e8f82904480d844afe8443ae67d0a6c0fb945 Mon Sep 17 00:00:00 2001 From: nomadics9 Date: Fri, 20 Dec 2024 19:36:49 +0300 Subject: [PATCH] fix: curl from inside the container --- watchTV.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watchTV.sh b/watchTV.sh index d9d1e35..882e628 100755 --- a/watchTV.sh +++ b/watchTV.sh @@ -13,5 +13,5 @@ if [ "$latest_release" != "$(cat $LAST_RELEASE_FILE 2>/dev/null)" ]; then curl -X POST "https://api.telegram.org/bot$BOT_TOKEN/sendMessage" \ -d chat_id="$CHAT_ID" \ -d text="🚀 New Release Detected: $latest_release on $REPO_OWNER/$REPO_NAME" - curl -X POST "http://localhost:9090/alaskartv" + curl -X POST "http://localhost:8080/alaskartv" fi