]> granicus.if.org Git - ejabberd/commitdiff
Fix call to deprecated ejabberd_config:get_myhosts() (#3000)
authorBadlop <badlop@process-one.net>
Thu, 22 Aug 2019 15:56:08 +0000 (17:56 +0200)
committerBadlop <badlop@process-one.net>
Thu, 22 Aug 2019 16:35:41 +0000 (18:35 +0200)
src/ejabberd_web_admin.erl
src/mod_shared_roster.erl

index 7eb10cdc63d1b85cdd167e2abc48ec53450372af..cf0492b9566a9000f4e05c38b30492948932f7e5 100644 (file)
@@ -265,7 +265,7 @@ get_auth_admin(Auth, HostHTTP, RPath, Method) ->
 
 get_auth_account(HostOfRule, AccessRule, User, Server,
                 Pass) ->
-    case lists:member(Server, ejabberd_config:get_myhosts()) of
+    case lists:member(Server, ejabberd_config:get_option(hosts)) of
        true -> get_auth_account2(HostOfRule, AccessRule, User, Server, Pass);
        false -> {unauthorized, <<"inexistent-host">>}
     end.
index 55fa3ec11ae506ac3f8a5f960e5a96b7fcbbf1b8..09763945686e40d2628a19e50902268f1d47ab2b 100644 (file)
@@ -545,7 +545,7 @@ is_user_in_group(US, Group, Host) ->
 %% @spec (Host::string(), {User::string(), Server::string()}, Group::string()) -> {atomic, ok} | error
 add_user_to_group(Host, US, Group) ->
     {_LUser, LServer} = US,
-    case lists:member(LServer, ejabberd_config:get_myhosts()) of
+    case lists:member(LServer, ejabberd_config:get_option(hosts)) of
        true -> add_user_to_group2(Host, US, Group);
        false ->
            ?INFO_MSG("Attempted adding to shared roster user of inexistent vhost ~s", [LServer]),