Open ollivxv opened 2 years ago
@olli-exe
I had to use my own tor and not the premade binary
If possible, could you see f it works with the pre-made binary.
If not possible, could you try this:
diff --git a/main.py b/main.py
index 9c407c3..d5d4ad9 100755
--- a/main.py
+++ b/main.py
@@ -526,9 +530,9 @@ class PlaceClient:
proxies=proxy.get_random_proxy(self),
)
break
- except Exception:
+ except Exception as e:
logger.error(
- "Failed to connect to websocket, trying again in 30 seconds..."
+ f"Failed to connect to websocket, trying again in 30 seconds... {e}"
)
time.sleep(30)
And paste the error(s).
Bug Report Form
Checklist
Describe the bug
When I use Tor the script cannot connect to the websocket (line 530), could be my fault as I had to use my own tor and not the premade binary
To Reproduce
Steps to trigger the bug:
Expected behavior
For it to connect to the websocket
Additional context