fix loop typo

This commit is contained in:
SpudGunMan
2024-07-19 01:35:38 -07:00
parent 1a2415408a
commit 5549339b70
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -485,7 +485,7 @@ if solar_conditions_enabled:
if location_enabled:
print(f"System: Location Telemetry Enabled")
loop = asyncio.get_event_loop()
loop = asyncio.new_event_loop()
try:
loop.run_forever(start_rx())
finally:
+1 -1
View File
@@ -322,7 +322,7 @@ def start_rx():
# Hello World
print ("\nMeshtastic Autoresponder MESH Bot CTL+C to exit\n")
loop = asyncio.get_event_loop()
loop = asyncio.new_event_loop()
try:
loop.run_forever(start_rx())
finally: