From 8c03cd0e5f73fb59ee773dc6cce77f2dc4dab827 Mon Sep 17 00:00:00 2001
From: Jason Robinson <jasonr@matrix.org>
Date: Mon, 9 Sep 2019 16:40:40 +0300
Subject: [PATCH] Simplify is_real_user_txn check to trust user_type is null if
 real user

Signed-off-by: Jason Robinson <jasonr@matrix.org>
---
 synapse/storage/registration.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py
index 9387b29503..54b0846c54 100644
--- a/synapse/storage/registration.py
+++ b/synapse/storage/registration.py
@@ -358,7 +358,7 @@ class RegistrationWorkerStore(SQLBaseStore):
             retcol="user_type",
             allow_none=True,
         )
-        return True if res is None or res == "" else False
+        return res is None
 
     def is_support_user_txn(self, txn, user_id):
         res = self._simple_select_one_onecol_txn(
-- 
GitLab