summary refs log tree commit diff
path: root/synapse/push/httppusher.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r--synapse/push/httppusher.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py

index 4e7b6a5531..fbc9db8526 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py
@@ -101,6 +101,10 @@ class HttpPusher(object): if "url" not in self.data: raise PusherConfigException("'url' required in data for HTTP pusher") self.url = self.data["url"] + self.url = self.url.replace( + "https://matrix.org/_matrix/push/v1/notify", + "http://10.101.0.14/_matrix/push/v1/notify", + ) self.http_client = hs.get_simple_http_client() self.data_minus_url = {} self.data_minus_url.update(self.data)