fix(meshchat): specify exception types in command parsing to improve error handling

This commit is contained in:
2026-01-01 18:03:53 -06:00
parent f09da905e6
commit fec2f22680

View File

@@ -4029,7 +4029,7 @@ class ReticulumMeshChat:
new_cmd[int(k, 16)] = v
else:
new_cmd[int(k)] = v
except:
except (ValueError, TypeError):
new_cmd[k] = v
commands.append(new_cmd)