If a text is too long, relay.rb breaks an quit. I don't know exactly how to fix it. A workaround is the following code: ``` @consumer = Thread.new do loop do sleep(@flood_limit) msgtext = @mesg_queue.pop msg(@irc_channel,msgtext) if msgtext.length < 300 end end ``` Thanks!
If a text is too long, relay.rb breaks an quit. I don't know exactly how to fix it. A workaround is the following code:
Thanks!