From b75e567977bf495a20f2c0197b3a42364d2d94fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de>
Date: Mon, 26 Aug 2019 14:48:57 +0200
Subject: [PATCH] Fix comment export

---
 .../_dialogs/comment-settings/comment-settings.component.ts     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts b/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts
index 40caa3c99..ddaca7bdd 100644
--- a/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts
+++ b/src/app/components/creator/_dialogs/comment-settings/comment-settings.component.ts
@@ -87,7 +87,7 @@ export class CommentSettingsComponent implements OnInit {
   }
 
   exportCsv(delimiter: string, date: string): void {
-    this.commentService.getComments(this.roomId)
+    this.commentService.getAckComments(this.roomId)
       .subscribe(comments => {
         this.comments = comments;
         const exportComments = JSON.parse(JSON.stringify(this.comments));
-- 
GitLab