diff options
Diffstat (limited to 'telegram/connect.go')
-rw-r--r-- | telegram/connect.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/telegram/connect.go b/telegram/connect.go index f367370..e19bda3 100644 --- a/telegram/connect.go +++ b/telegram/connect.go @@ -116,7 +116,6 @@ func (c *Client) Connect() error { } c.client = tdlibClient - c.listener = tdlibClient.GetListener() c.locks.authorizationReady.Done() c.online = true @@ -211,12 +210,11 @@ func (c *Client) interactor() { } func (c *Client) forceClose() { - //c.listener.Close() c.online = false c.authorizer = nil } // Online checks if the updates listener is alive func (c *Client) Online() bool { - return c.listener != nil && c.online //c.listener.IsActive() + return c.online } |