Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
louiz’
biboumi
Commits
de6335b9
Commit
de6335b9
authored
Nov 05, 2015
by
louiz’
Browse files
Fix a clang warning
parent
a44372e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/xmpp/biboumi_component.cpp
View file @
de6335b9
...
...
@@ -141,7 +141,7 @@ void BiboumiComponent::handle_presence(const Stanza& stanza)
else
if
(
type
==
"unavailable"
)
{
const
XmlNode
*
status
=
stanza
.
get_child
(
"status"
,
COMPONENT_NS
);
bridge
->
leave_irc_channel
(
std
::
move
(
iid
),
status
?
std
::
move
(
status
->
get_inner
()
)
:
""
);
bridge
->
leave_irc_channel
(
std
::
move
(
iid
),
status
?
status
->
get_inner
()
:
""
);
}
}
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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