feat: Add Export to MD feature, persistent agent selection, and fix export bug (v2.2.67)

This commit is contained in:
2026-04-29 13:38:14 +09:00
parent 04c8f17cb7
commit f8a57cfbb0
6 changed files with 111 additions and 50 deletions
+8
View File
@@ -57,6 +57,14 @@ export class BridgeServer {
}
});
this.server.on('error', (err: any) => {
if (err.code === 'EADDRINUSE') {
logWarn(`Bridge server: Port ${port} is already in use. Another instance might be running.`);
} else {
logError('Bridge server error:', err);
}
});
this.server.listen(port, '127.0.0.1', () => {
logInfo(`Bridge server active on 127.0.0.1:${port}.`);
});