diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/url.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/rbot/plugins/url.rb b/data/rbot/plugins/url.rb index e55999ee..84ee7e43 100644 --- a/data/rbot/plugins/url.rb +++ b/data/rbot/plugins/url.rb @@ -40,10 +40,10 @@ class UrlPlugin < Plugin amount_read += chunk.length - if amount_read > amount - amount_of_overflow = amount_read - amount - chunk = chunk[0...-amount_of_overflow] - end + # if amount_read > amount + # amount_of_overflow = amount_read - amount + # chunk = chunk[0...-amount_of_overflow] + # end chunks << chunk |