mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
Merge pull request #1029 from vector-im/bwindels/fix-1014
fix missing msgtype on emote
This commit is contained in:
commit
3720de36bb
@ -292,7 +292,7 @@ export class RoomViewModel extends ErrorReportViewModel {
|
|||||||
this.reportError(new Error(`no command name "${commandName}". To send the message instead of executing, please type "/${message}"`));
|
this.reportError(new Error(`no command name "${commandName}". To send the message instead of executing, please type "/${message}"`));
|
||||||
message = undefined;
|
message = undefined;
|
||||||
}
|
}
|
||||||
return {type: msgtype, message: message};
|
return {msgtype, message: message};
|
||||||
}
|
}
|
||||||
|
|
||||||
_pickAndSendFile() {
|
_pickAndSendFile() {
|
||||||
|
Loading…
Reference in New Issue
Block a user