mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-07 21:41:47 +02:00
Check jitsi type in proper way
This commit is contained in:
parent
18be4cb202
commit
a93afe8c69
@ -479,7 +479,7 @@ function textForWidgetEvent(event) {
|
||||
const prevWidgetType = WidgetType.fromString(prevType);
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user