Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 67193b0

Browse files
committed
Fix StopGapWidget infinitely recursing
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 430bceb commit 67193b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stores/widgets/StopGapWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class ElementWidget extends Widget {
6666
if (WidgetType.JITSI.matches(this.type)) {
6767
return WidgetUtils.getLocalJitsiWrapperUrl({
6868
forLocalRender: true,
69-
auth: this.rawData?.auth,
69+
auth: super.rawData?.auth, // this.rawData can call templateUrl, do this to prevent looping
7070
});
7171
}
7272
return super.templateUrl;

0 commit comments

Comments
 (0)