From d9edfdb807d31ffd612f4dae4a7aab1257065405 Mon Sep 17 00:00:00 2001 From: Kelly Date: Mon, 6 Jul 2026 17:06:08 -0700 Subject: [PATCH] tupleAlert! https://github.com/SpudGunMan/meshing-around/issues/324 patching only the tuple unwrap so plain string responses stay intact. thanks dude! Co-Authored-By: wh6gxz nurse dude --- mesh_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh_bot.py b/mesh_bot.py index a94086d..034b13a 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -481,7 +481,7 @@ def handle_wxalert(message_from_id, deviceID, message): else: weatherAlert = getWeatherAlertsNOAA(str(location[0]), str(location[1])) - if my_settings.NO_ALERTS not in weatherAlert: + if isinstance(weatherAlert, tuple): weatherAlert = weatherAlert[0] return weatherAlert