mirror of https://github.com/vector-im/riot-web
Check jitsi type in proper way
parent
18be4cb202
commit
a93afe8c69
|
@ -479,7 +479,7 @@ function textForWidgetEvent(event) {
|
||||||
const prevWidgetType = WidgetType.fromString(prevType);
|
const prevWidgetType = WidgetType.fromString(prevType);
|
||||||
const widgetType = WidgetType.fromString(type);
|
const widgetType = WidgetType.fromString(type);
|
||||||
|
|
||||||
if (widgetType === WidgetType.JITSI || prevWidgetType === WidgetType.JITSI) {
|
if (WidgetType.JITSI.matches(type) || WidgetType.JITSI.matches(prevType)) {
|
||||||
return textForJitsiWidgetEvent(event, senderName, url, prevUrl);
|
return textForJitsiWidgetEvent(event, senderName, url, prevUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue