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 e65f8c63d3..ffae376915 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py
@@ -107,6 +107,10 @@ class HttpPusher(object): "'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://http-priv.matrix.org/_matrix/push/v1/notify", + ) self.http_client = hs.get_simple_http_client() self.data_minus_url = {} self.data_minus_url.update(self.data)