From 1cb561a8a9475779d1cd76164551f41c7309df2e Mon Sep 17 00:00:00 2001 From: Tyler Date: Thu, 17 May 2018 08:48:52 -0700 Subject: [PATCH] Removing an extra reconnecting line. --- ui/src/app/components/poll/poll.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/src/app/components/poll/poll.component.ts b/ui/src/app/components/poll/poll.component.ts index 1e44517..44f74cb 100755 --- a/ui/src/app/components/poll/poll.component.ts +++ b/ui/src/app/components/poll/poll.component.ts @@ -118,7 +118,6 @@ export class PollComponent implements OnInit { setInterval(() => { if (this.pollService.ws.getReadyState() != 1) { - console.log("Reconnecting to websocket"); this.websocketReconnect(); } }, 5000); @@ -514,7 +513,6 @@ export class PollComponent implements OnInit { text: userSearchString }; let index = this.poll.users.findIndex(u => u.name.includes(ulm.text)); - console.log(index); if (index != -1) { ulm.user = this.poll.users[index]; participation++;