fix: properly reraise the exception from browser

This commit is contained in:
cschen 2025-02-22 19:35:17 +01:00
parent f4b16f1367
commit b79e25748c

View file

@ -58,7 +58,7 @@ class QPServerBrowser():
try: self.window.run_command(
"codemp_join_workspace", {"workspace_id": wid})
except Exception as e:
return
raise e
ws = workspaces.lookupId(wid)
buffers = ws.handle.fetch_buffers()