fix: update silo submodule — SSE URL and origin command fixes (#84) #85
Reference in New Issue
Block a user
Delete Branch "fix/silo-sse-and-origin"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes two bugs in the Silo workbench:
SSE reconnection loop:
_listen()constructed the URL as${api_url}/api/eventsbut_get_api_url()already returns a URL ending in/api, producing/api/api/events. Changed to/eventsto match_test_sse().SiloOrigin command invocation: All 8 calls to
FreeCADGui.Command.get("Silo_*").Activated()failed because the C++Gui::Commandwrapper doesn't expose.Activated()to Python. Replaced withFreeCADGui.runCommand().Closes #84