summary refs log tree commit diff
path: root/synapse/storage/databases
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2022-05-30 11:14:43 +0000
committerGitHub <noreply@github.com>2022-05-30 13:14:43 +0200
commitb10211871fd19013631cf5d798a90f74a86c6c56 (patch)
treea3ce40bdf219e43f4b3ccc525dde91dccbae1f75 /synapse/storage/databases
parentFix `get_metadata_for_events` (#12904) (diff)
downloadsynapse-b10211871fd19013631cf5d798a90f74a86c6c56.tar.xz
Fix invite notifications for users without pushers (#12840)
Signed-off-by: Nicolas Werner <nicolas.werner@hotmail.de>
Co-authored-by: Brendan Abolivier <github@brendanabolivier.com>
Diffstat (limited to 'synapse/storage/databases')
-rw-r--r--synapse/storage/databases/main/pusher.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/synapse/storage/databases/main/pusher.py b/synapse/storage/databases/main/pusher.py
index 91286c9b65..bd0cfa7f32 100644
--- a/synapse/storage/databases/main/pusher.py
+++ b/synapse/storage/databases/main/pusher.py
@@ -91,12 +91,6 @@ class PusherWorkerStore(SQLBaseStore):
 
             yield PusherConfig(**r)
 
-    async def user_has_pusher(self, user_id: str) -> bool:
-        ret = await self.db_pool.simple_select_one_onecol(
-            "pushers", {"user_name": user_id}, "id", allow_none=True
-        )
-        return ret is not None
-
     async def get_pushers_by_app_id_and_pushkey(
         self, app_id: str, pushkey: str
     ) -> Iterator[PusherConfig]: