summaryrefslogtreecommitdiffstats
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 92682fed5..5f4890cbe 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -67,8 +67,8 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
/* Create two lists, one for channel names, one for keys
*/
- irc::commasepstream items1(parameters[splithere]);
- irc::commasepstream items2(extra >= 0 ? parameters[extra] : "");
+ irc::commasepstream items1(parameters[splithere], false);
+ irc::commasepstream items2(extra >= 0 ? parameters[extra] : "", false);
std::string extrastuff;
std::string item;
unsigned int max = 0;