make crypto work out of the box
This commit is contained in:
parent
b54883bb70
commit
b642d7d62f
1 changed files with 2 additions and 2 deletions
|
@ -1082,7 +1082,7 @@ class MatrixServer(object):
|
|||
room_id, # type: str
|
||||
content, # type: Dict[str, str]
|
||||
event_type="m.room.message", # type: str
|
||||
ignore_unverified_devices=False, # type: bool
|
||||
ignore_unverified_devices=True, # type: bool
|
||||
):
|
||||
# type: (...) -> UUID
|
||||
assert self.client
|
||||
|
@ -1114,7 +1114,7 @@ class MatrixServer(object):
|
|||
room_buffer, # type: RoomBuffer
|
||||
formatted, # type: Formatted
|
||||
msgtype="m.text", # type: str
|
||||
ignore_unverified_devices=False, # type: bool
|
||||
ignore_unverified_devices=True, # type: bool
|
||||
in_reply_to_event_id="", # type: str
|
||||
):
|
||||
# type: (...) -> bool
|
||||
|
|
Loading…
Reference in a new issue