Merge pull request #1111 from matrix-org/matthew/device-ids

make device IDs more useful for human disambiguation
This commit is contained in:
Matthew Hodgson 2016-09-14 01:18:02 +01:00 committed by GitHub
commit 1b01488d27

View File

@ -58,7 +58,7 @@ class DeviceHandler(BaseHandler):
attempts = 0
while attempts < 5:
try:
device_id = stringutils.random_string_with_symbols(16)
device_id = stringutils.random_string(10).upper()
yield self.store.store_device(
user_id=user_id,
device_id=device_id,