meebey / SmartIrc4net

IRC C# Library
http://www.meebey.net/projects/smartirc4net/
Other
126 stars 52 forks source link

Allow multiple spaces between message parts #1

Closed carlosmn closed 9 years ago

carlosmn commented 12 years ago

The standard allows multiple spaces between message parts and some servers do send such replies.

meebey commented 12 years ago

I believe using regex for this is too expensive here. Filtering empty items after String.Split() should do the trick (possibly with LINQ)

meebey commented 9 years ago

Closing this PR since it would introduce a regression