aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/IRCSocket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCSocket.py b/src/IRCSocket.py
index 059c8515..fff93e8c 100644
--- a/src/IRCSocket.py
+++ b/src/IRCSocket.py
@@ -139,7 +139,7 @@ class Socket(IRCObject.Object):
self._recent_sends.clear()
throttle_space = self.throttle_space()
- if throttle_space:
+ if not self._buffered_lines and throttle_space:
to_buffer = self._queued_lines[:throttle_space]
self._queued_lines = self._queued_lines[throttle_space:]
for line in to_buffer: