don't use await in websocket handler as it blocks all other requests

This commit is contained in:
liamcottle 2025-07-18 19:37:59 +12:00
commit a094a741a8

View file

@ -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: