不要怂,就是干,撸起袖子干!

Commit 50f151f9 by Andy Burke

Check for client.

1 parent 7b73f271
Showing with 1 additions and 1 deletions
...@@ -185,7 +185,7 @@ module.exports = (function() { ...@@ -185,7 +185,7 @@ module.exports = (function() {
} }
ConnectorManager.prototype.__defineGetter__('hasQueuedItems', function() { ConnectorManager.prototype.__defineGetter__('hasQueuedItems', function() {
return (this.queue.length > 0) || (this.activeQueue.length > 0) || (this.client._queue && (this.client._queue.length > 0)) return (this.queue.length > 0) || (this.activeQueue.length > 0) || (this.client && this.client._queue && (this.client._queue.length > 0))
}) })
// legacy // legacy
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!