mirror of https://github.com/vector-im/riot-web
also allow commands to be pill-candidates
parent
ca0130db02
commit
77a61519ef
|
@ -182,7 +182,7 @@ export default class SendMessageComposer extends React.Component {
|
|||
// be extra resilient when somehow the AutocompleteWrapperModel or
|
||||
// CommandPartCreator fails to insert a command part, so we don't send
|
||||
// a command as a message
|
||||
if (firstPart.type === "plain" && firstPart.text.startsWith("/")) {
|
||||
if (firstPart.text.startsWith("/") && (firstPart.type === "plain" || firstPart.type === "pill-candidate")) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue