summaryrefslogtreecommitdiff
path: root/src/xmpp/biboumi_component.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-03-31 16:55:30 +0200
committerlouiz’ <louiz@louiz.org>2018-04-16 00:53:25 +0200
commit0d487f40c51463a15013255990f374fa9c41e590 (patch)
tree00ddcbf9b9b1f9017851341b3fbaf2fa4c89a5c4 /src/xmpp/biboumi_component.cpp
parenta429b2ea271158fcda8a2f7a5b0179686bab3aa2 (diff)
downloadbiboumi-0d487f40c51463a15013255990f374fa9c41e590.tar.gz
biboumi-0d487f40c51463a15013255990f374fa9c41e590.tar.bz2
biboumi-0d487f40c51463a15013255990f374fa9c41e590.tar.xz
biboumi-0d487f40c51463a15013255990f374fa9c41e590.zip
Use Config::is_in_list() to allow for multiple admins
Diffstat (limited to 'src/xmpp/biboumi_component.cpp')
-rw-r--r--src/xmpp/biboumi_component.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp
index f82a923..9bcfa8a 100644
--- a/src/xmpp/biboumi_component.cpp
+++ b/src/xmpp/biboumi_component.cpp
@@ -551,24 +551,21 @@ void BiboumiComponent::handle_iq(const Stanza& stanza)
if (to.local.empty())
{ // Get biboumi's adhoc commands
this->send_adhoc_commands_list(id, from, this->served_hostname,
- (Config::get("admin", "") ==
- from_jid.bare()),
+ Config::is_in_list("admin", from_jid.bare()),
this->adhoc_commands_handler);
stanza_error.disable();
}
else if (iid.type == Iid::Type::Server)
{ // Get the server's adhoc commands
this->send_adhoc_commands_list(id, from, to_str,
- (Config::get("admin", "") ==
- from_jid.bare()),
+ Config::is_in_list("admin", from_jid.bare()),
this->irc_server_adhoc_commands_handler);
stanza_error.disable();
}
else if (iid.type == Iid::Type::Channel && to.resource.empty())
{ // Get the channel's adhoc commands
this->send_adhoc_commands_list(id, from, to_str,
- (Config::get("admin", "") ==
- from_jid.bare()),
+ Config::is_in_list("admin", from_jid.bare()),
this->irc_channel_adhoc_commands_handler);
stanza_error.disable();
}