From 5a84774baebc17d488702b79839290dc2043f891 Mon Sep 17 00:00:00 2001
From: Erik Johnston <erik@matrix.org>
Date: Fri, 12 Apr 2024 09:04:14 +0100
Subject: [PATCH] Download Synapse from correct repo in Dockerfile

This will fix prebuilding of dependencies.
---
 docker/synapse.Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/synapse.Dockerfile b/docker/synapse.Dockerfile
index cb781338f..f480e80a4 100644
--- a/docker/synapse.Dockerfile
+++ b/docker/synapse.Dockerfile
@@ -51,7 +51,7 @@ RUN ${PYTHON_VERSION} -m pip download --dest /pypi-offline-cache \
 
 # Create the virtual env upfront so we don't need to keep reinstalling
 # dependencies.
-RUN wget -q https://github.com/matrix-org/synapse/archive/develop.tar.gz \
+RUN wget -q https://github.com/element-hq/synapse/archive/develop.tar.gz \
         -O /synapse.tar.gz && \
         mkdir /synapse && \
         tar -C /synapse --strip-components=1 -xf synapse.tar.gz && \