We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e078548 commit ed20ee1Copy full SHA for ed20ee1
opsdroid/connector/matrix/connector.py
@@ -3,6 +3,7 @@
3
import json
4
import logging
5
import re
6
+import os
7
from pathlib import Path
8
from urllib.parse import urlparse
9
@@ -194,6 +195,7 @@ async def connect(self):
194
195
config=config,
196
store_path=self.store_path if self._allow_encryption else "",
197
device_id=self.device_id,
198
+ proxy=os.environ.get("HTTPS_PROXY"),
199
)
200
201
if self.access_token is not None:
0 commit comments