Skip to content

Commit 370356f

Browse files
committed
Fix formatting issue
1 parent 27fdfa0 commit 370356f

File tree

1 file changed

+5
-1
lines changed
  • crates/matrix-sdk/src/encryption

1 file changed

+5
-1
lines changed

crates/matrix-sdk/src/encryption/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,11 @@ impl Client {
204204
mime::AUDIO => {
205205
let audio_message_event_content =
206206
AudioMessageEventContent::encrypted(body.to_owned(), file);
207-
MessageType::Audio(crate::media::update(audio_message_event_content, content_type, info))
207+
MessageType::Audio(crate::media::update(
208+
audio_message_event_content,
209+
content_type,
210+
info,
211+
))
208212
}
209213
mime::VIDEO => {
210214
let info = assign!(info.map(VideoInfo::from).unwrap_or_default(), {

0 commit comments

Comments
 (0)