Skip to content

Commit

Permalink
Merge pull request #6993 from vector-im/aringenbach/6962_slash_commands
Browse files Browse the repository at this point in the history
Fixed IRC-style message and commands support in Rich text editor
  • Loading branch information
aringenbach authored Nov 9, 2022
2 parents c69c3b9 + 82274c0 commit 2184f1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Riot/Modules/Room/RoomViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ extension RoomViewController {
"event_id": eventModified.eventId
])
})
} else {
} else if !self.send(asIRCStyleCommandIfPossible: rawTextMsg) {
roomDataSource.sendFormattedTextMessage(rawTextMsg, html: htmlMsg) { response in
switch response {
case .success:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/6962.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed IRC-style message and commands support in Rich text editor

0 comments on commit 2184f1f

Please sign in to comment.