fix: update silo submodule — save Modified attribute fix #129
Reference in New Issue
Block a user
Delete Branch "fix/silo-save-modified"
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?
Updates silo submodule to silo-mod@7cf5867 which fixes:
Silo save failed: 'App.Document' object has no attribute 'Modified'silo_origin.pywas callingdoc.Modified = Falseon anApp.Document, but theModifiedproperty only exists onGui.Document. The save itself succeeded but the modified flag was never cleared, so the document always appeared unsaved.Fix: use
FreeCADGui.getDocument(doc.Name).Modified = False(matching the pattern insilo_commands.py:910-912).SSE reconnection loop — Issue #13 in silo-mod documents what to check on the server side. The client code is correct (URL fix from PR #85 confirmed), but the server immediately closes the SSE connection after accepting it. Likely needs
proxy_buffering offin nginx or equivalent reverse proxy config.Upstream: kindred/silo-mod#14