mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-07 16:27:53 -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"]):
|
for session_id, room_key in iteritems(room["sessions"]):
|
||||||
if not isinstance(room_key["is_verified"], bool):
|
if not isinstance(room_key["is_verified"], bool):
|
||||||
msg = (
|
msg = (
|
||||||
"is_verified must be a boolean in keys for room %s"
|
"is_verified must be a boolean in keys for session %s in"
|
||||||
% room_id
|
"room %s"
|
||||||
|
% (session_id, room_id)
|
||||||
)
|
)
|
||||||
raise SynapseError(400, msg, Codes.INVALID_PARAM)
|
raise SynapseError(400, msg, Codes.INVALID_PARAM)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user