Develop #16

Merged
tao.chen merged 273 commits from develop into main 2026-08-21 10:42:09 +08:00
Showing only changes of commit 10347efa73 - Show all commits
+1 -1
View File
@@ -522,7 +522,7 @@ async def scan_workspaces() -> None:
if not WORKSPACES_ROOT.exists():
return
try:
entries = os.listdir(WORKSPACES_ROOT)
entries = [f for f in os.listdir(WORKSPACES_ROOT) if not f.startswith('.')]
except Exception as e:
logger.error(f"scan workspace failed: {e}")
return