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.
- package/package.json +1 -1
- package/payload/start.py +1 -1
package/package.json
CHANGED
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 =
|
|
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:
|