superbrain-server 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload/start.py +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superbrain-server",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "1-Line Auto-Installer and Server Execution wrapper for SuperBrain",
5
5
  "main": "index.js",
6
6
  "bin": {
package/payload/start.py CHANGED
@@ -1275,7 +1275,7 @@ def launch_backend_status():
1275
1275
  token = TOKEN_FILE.read_text(encoding="utf-8").strip()
1276
1276
 
1277
1277
  url = "NOT_FOUND"
1278
- log_file = BACKEND_DIR / "config" / "localtunnel.log"
1278
+ log_file = BASE_DIR / "config" / "localtunnel.log"
1279
1279
  if log_file.exists():
1280
1280
  match = re.search(r"your url is: (https://[^\s]+)", log_file.read_text(encoding="utf-8"))
1281
1281
  if match: