agentgui 1.0.403 → 1.0.404

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.403",
3
+ "version": "1.0.404",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -54,7 +54,7 @@ try {
54
54
  // to avoid duplication like C:\\C:\\dev
55
55
  if (baseDriveLetter && sanitizedIsAbsoluteOnDrive && sanitizedDriveLetter === baseDriveLetter) {
56
56
  // Remove drive letter and leading slashes to make it relative
57
- const relativePath = sanitized.replace(/^[A-Z]:[\/\\]?/i, '');
57
+ const relativePath = sanitized.replace(/^[A-Z]:(?:\/|\\)?/i, '');
58
58
  fullPath = path.resolve(normalizedBase, relativePath);
59
59
  } else {
60
60
  fullPath = path.resolve(normalizedBase, sanitized);