From a094a741a8641c93e5365b876eb70d7af772de5f Mon Sep 17 00:00:00 2001 From: liamcottle Date: Fri, 18 Jul 2025 19:37:59 +1200 Subject: [PATCH] don't use await in websocket handler as it blocks all other requests --- meshchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshchat.py b/meshchat.py index 4d4b984..b76fb0e 100644 --- a/meshchat.py +++ b/meshchat.py @@ -2221,7 +2221,7 @@ class ReticulumMeshChat: # download the page downloader = NomadnetPageDownloader(destination_hash, page_path_to_download, combined_data, on_page_download_success, on_page_download_failure, on_page_download_progress) - await downloader.download() + AsyncUtils.run_async(downloader.download()) # unhandled type else: