diff --git a/src/app/components/shared/questionwall/question-wall/question-wall.component.ts b/src/app/components/shared/questionwall/question-wall/question-wall.component.ts index 9b4cfbcee690b4d2168ec1e0894781287fd48e5e..f4f925129fa452e2389c1b3213f335b250a7e1eb 100644 --- a/src/app/components/shared/questionwall/question-wall/question-wall.component.ts +++ b/src/app/components/shared/questionwall/question-wall/question-wall.component.ts @@ -101,21 +101,6 @@ export class QuestionWallComponent implements OnInit, AfterViewInit, OnDestroy { this.room = e; this.tags = e.tags; }); - - // this.wsCommentService.getCommentStream(this.roomId).subscribe(e => { - // this.commentService.getComment(JSON.parse(e.body).payload.id).subscribe(comment => { - // this.notUndefined(this.comments.find(f => f.comment.id === comment.id), qwComment => { - // qwComment.comment = comment; - // this.roomDataService.checkProfanity(comment); - // }, () => { - // this.wrap(this.pushIncommingComment(comment), qwComment => { - // if (this.focusIncommingComments) { - // setTimeout(() => this.focusComment(qwComment), 5); - // } - // }); - // }); - // }); - // }); this.subscribeCommentStream(); this.initKeySupport(); }