Fix StopGapWidget infinitely recursing
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@@ -66,7 +66,7 @@ class ElementWidget extends Widget {
|
|||||||
if (WidgetType.JITSI.matches(this.type)) {
|
if (WidgetType.JITSI.matches(this.type)) {
|
||||||
return WidgetUtils.getLocalJitsiWrapperUrl({
|
return WidgetUtils.getLocalJitsiWrapperUrl({
|
||||||
forLocalRender: true,
|
forLocalRender: true,
|
||||||
auth: this.rawData?.auth,
|
auth: super.rawData?.auth, // this.rawData can call templateUrl, do this to prevent looping
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return super.templateUrl;
|
return super.templateUrl;
|
||||||
|
|||||||
Reference in New Issue
Block a user