mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-06 05:37:56 -05:00
Mention the session ID in the error message
This commit is contained in:
parent
45df9d35a9
commit
297aaf4816
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user