mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 03:05:51 +03:00
Just return nothing for unknown events
This commit is contained in:
parent
00c45e48a9
commit
b53640f892
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ var handlers = {
|
|||
module.exports = {
|
||||
textForEvent(ev) {
|
||||
var hdlr = handlers[ev.getType()];
|
||||
if (!hdlr) return "Unknown entry event";
|
||||
if (!hdlr) return "";
|
||||
return hdlr(ev);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue