mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
Fix excess debug
This commit is contained in:
parent
aa851d99df
commit
8010658e4b
@ -339,7 +339,7 @@ export class AppModule {
|
||||
}
|
||||
|
||||
hmrOnInit(store) {
|
||||
console.log("HMR store", store);
|
||||
console.log("Dimension HMR store", store);
|
||||
}
|
||||
|
||||
hmrOnDestroy(store) {
|
||||
|
@ -20,7 +20,6 @@ export class EtherpadWidgetConfigComponent extends WidgetComponent {
|
||||
}
|
||||
|
||||
protected OnWidgetsDiscovered(widgets: EditableWidget[]): void {
|
||||
console.log(widgets);
|
||||
for (const widget of widgets) {
|
||||
if (!widget.dimension.newUrl.startsWith("http://") && !widget.dimension.newUrl.startsWith("https://")) {
|
||||
const parsedUrl = url.parse(widget.url, true);
|
||||
|
@ -19,7 +19,6 @@ export class WhiteboardWidgetComponent extends WidgetComponent {
|
||||
}
|
||||
|
||||
protected OnWidgetsDiscovered(widgets: EditableWidget[]): void {
|
||||
console.log(widgets);
|
||||
for (const widget of widgets) {
|
||||
if (!widget.dimension.newUrl.startsWith("http://") && !widget.dimension.newUrl.startsWith("https://")) {
|
||||
const parsedUrl = url.parse(widget.url, true);
|
||||
|
@ -161,8 +161,6 @@ export class BigBlueButtonWidgetWrapperComponent
|
||||
this.meetingPassword
|
||||
)
|
||||
.then((response) => {
|
||||
console.log("The response");
|
||||
console.log(response);
|
||||
if ("errorCode" in response) {
|
||||
// This is an instance of ApiError
|
||||
if (response.errorCode === "UNKNOWN_MEETING_ID") {
|
||||
|
Loading…
Reference in New Issue
Block a user