Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
louiz’
biboumi
Commits
d6832fbc
Commit
d6832fbc
authored
Nov 28, 2013
by
louiz’
Browse files
:3
parent
1151c26c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/irc/irc_client.cpp
src/irc/irc_client.cpp
+2
-1
No files found.
src/irc/irc_client.cpp
View file @
d6832fbc
...
...
@@ -91,7 +91,8 @@ void IrcClient::send_message(IrcMessage&& message)
res
+=
std
::
move
(
message
.
command
);
for
(
const
std
::
string
&
arg
:
message
.
arguments
)
{
if
(
arg
.
find
(
" "
)
!=
std
::
string
::
npos
)
if
(
arg
.
find
(
" "
)
!=
std
::
string
::
npos
||
(
!
arg
.
empty
())
&&
arg
[
0
]
==
':'
)
{
res
+=
" :"
+
arg
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment