From 2f50b4e2e0f444a8c1cda09d184adef610134a6a Mon Sep 17 00:00:00 2001 From: Brandon Dahler Date: Mon, 10 Sep 2012 16:18:04 -0500 Subject: [PATCH] Fix duplicate unconditional calls to AlsoListenToInternal for all channels --- SparkleLib/SparkleListenerTcp.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/SparkleLib/SparkleListenerTcp.cs b/SparkleLib/SparkleListenerTcp.cs index d134fdb9..d8108f24 100755 --- a/SparkleLib/SparkleListenerTcp.cs +++ b/SparkleLib/SparkleListenerTcp.cs @@ -75,10 +75,6 @@ namespace SparkleLib { OnConnected (); - // Subscribe to channels of interest to us - foreach (string channel in base.channels) - AlsoListenToInternal (channel); - } catch (SocketException e) { this.is_connected = false; this.is_connecting = false;