From 57d06d4434e760af62b021fb60448c0c0b152f72 Mon Sep 17 00:00:00 2001 From: evan <1+e@noreply.gitea.im0.zenith.hosting> Date: Thu, 18 Jun 2026 08:43:39 +0000 Subject: [PATCH] Update xp.py --- xp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xp.py b/xp.py index 949b0d4..5dcc55e 100644 --- a/xp.py +++ b/xp.py @@ -95,7 +95,7 @@ def verify_upload(): try: r = requests.get(triggerurl, verify=False, timeout=10) # kinda brittle from experience prob just remove the latter - if r.status_code == 200 and "ok" in r.text: + if r.status_code == 200 # and "ok" in r.text: print("+ trigger fired, shelling...") else: print(f"+ trigger returned {r.status_code}")