mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 12:58:53 +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 = {
|
module.exports = {
|
||||||
textForEvent(ev) {
|
textForEvent(ev) {
|
||||||
var hdlr = handlers[ev.getType()];
|
var hdlr = handlers[ev.getType()];
|
||||||
if (!hdlr) return "Unknown entry event";
|
if (!hdlr) return "";
|
||||||
return hdlr(ev);
|
return hdlr(ev);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue