Skip to content

Commit 860108f

Browse files
committed
separate lines in case of notice
1 parent bce17c1 commit 860108f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/irc.coffee

+6-4
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,12 @@ class IrcBot extends Adapter
6262
# Flatten out strings from send
6363
flattened = []
6464
for str in strings
65-
if Array.isArray str
66-
flattened = flattened.concat str
67-
else
68-
flattened.push str
65+
if typeof str != 'undefined'
66+
for line in str.toString().split(/\r?\n/)
67+
if Array.isArray line
68+
flattened = flattened.concat line
69+
else
70+
flattened.push line
6971

7072
for str in flattened
7173
if not str?

0 commit comments

Comments
 (0)