mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 09:33:53 +01:00
Remove unnecessary str()
This commit is contained in:
parent
e0934acdbb
commit
d3fa6194f7
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class E2eRoomKeysHandler(object):
|
|||
else:
|
||||
raise
|
||||
|
||||
if str(version_info['version']) != version:
|
||||
if version_info['version'] != version:
|
||||
# Check that the version we're trying to upload actually exists
|
||||
try:
|
||||
version_info = yield self.store.get_e2e_room_keys_version_info(
|
||||
|
|
Loading…
Reference in a new issue