mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-12 16:19:36 -05:00
Don't use _cursor_to_dict in find_next_generated_user_id_localpart
This commit is contained in:
parent
a052aa42e7
commit
8d6dc106d1
@ -460,14 +460,12 @@ class RegistrationStore(RegistrationWorkerStore,
|
||||
"""
|
||||
def _find_next_generated_user_id(txn):
|
||||
txn.execute("SELECT name FROM users")
|
||||
rows = self.cursor_to_dict(txn)
|
||||
|
||||
regex = re.compile("^@(\d+):")
|
||||
|
||||
found = set()
|
||||
|
||||
for r in rows:
|
||||
user_id = r["name"]
|
||||
for user_id, in txn:
|
||||
match = regex.search(user_id)
|
||||
if match:
|
||||
found.add(int(match.group(1)))
|
||||
|
Loading…
Reference in New Issue
Block a user