Update xp.py

This commit is contained in:
2026-06-18 08:43:39 +00:00
parent 19ee8d6eab
commit 57d06d4434
+1 -1
View File
@@ -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}")