Mention the session ID in the error message

pull/7045/head
Brendan Abolivier 2020-03-06 15:07:28 +00:00
parent 45df9d35a9
commit 297aaf4816
No known key found for this signature in database
GPG Key ID: 1E015C145F1916CD
1 changed files with 3 additions and 2 deletions

View File

@ -209,8 +209,9 @@ class E2eRoomKeysHandler(object):
for session_id, room_key in iteritems(room["sessions"]):
if not isinstance(room_key["is_verified"], bool):
msg = (
"is_verified must be a boolean in keys for room %s"
% room_id
"is_verified must be a boolean in keys for session %s in"
"room %s"
% (session_id, room_id)
)
raise SynapseError(400, msg, Codes.INVALID_PARAM)