Ensure etag is a string for GET room_keys/version response (#7691)

This commit is contained in:
Hubert Chathi 2020-06-15 13:42:44 -04:00 committed by GitHub
parent b8ee03caff
commit 2b2344652b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -349,6 +349,7 @@ class E2eRoomKeysHandler(object):
raise
res["count"] = yield self.store.count_e2e_room_keys(user_id, res["version"])
res["etag"] = str(res["etag"])
return res
@trace