mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-26 05:52:06 +01:00
Use correct namespace for MUC.getAdmins()
Fixes (again) SMACK-371
This commit is contained in:
parent
e7963b698d
commit
0e49b23687
1 changed files with 1 additions and 28 deletions
|
@ -1473,7 +1473,7 @@ public class MultiUserChat {
|
||||||
* don't have enough privileges to get this information.
|
* don't have enough privileges to get this information.
|
||||||
*/
|
*/
|
||||||
public Collection<Affiliate> getAdmins() throws XMPPException {
|
public Collection<Affiliate> getAdmins() throws XMPPException {
|
||||||
return getAffiliatesByOwner("admin");
|
return getAffiliatesByAdmin("admin");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1498,33 +1498,6 @@ public class MultiUserChat {
|
||||||
return getAffiliatesByAdmin("outcast");
|
return getAffiliatesByAdmin("outcast");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a collection of <code>Affiliate</code> that have the specified room affiliation
|
|
||||||
* sending a request in the owner namespace.
|
|
||||||
*
|
|
||||||
* @param affiliation the affiliation of the users in the room.
|
|
||||||
* @return a collection of <code>Affiliate</code> that have the specified room affiliation.
|
|
||||||
* @throws XMPPException if an error occured while performing the request to the server or you
|
|
||||||
* don't have enough privileges to get this information.
|
|
||||||
*/
|
|
||||||
private Collection<Affiliate> getAffiliatesByOwner(String affiliation) throws XMPPException {
|
|
||||||
MUCOwner iq = new MUCOwner();
|
|
||||||
iq.setTo(room);
|
|
||||||
iq.setType(IQ.Type.GET);
|
|
||||||
// Set the specified affiliation. This may request the list of owners/admins/members/outcasts.
|
|
||||||
MUCOwner.Item item = new MUCOwner.Item(affiliation);
|
|
||||||
iq.addItem(item);
|
|
||||||
|
|
||||||
MUCOwner answer = (MUCOwner) connection.createPacketCollectorAndSend(iq).nextResultOrThrow();
|
|
||||||
|
|
||||||
// Get the list of affiliates from the server's answer
|
|
||||||
List<Affiliate> affiliates = new ArrayList<Affiliate>();
|
|
||||||
for (Iterator<MUCOwner.Item> it = answer.getItems(); it.hasNext();) {
|
|
||||||
affiliates.add(new Affiliate(it.next()));
|
|
||||||
}
|
|
||||||
return affiliates;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a collection of <code>Affiliate</code> that have the specified room affiliation
|
* Returns a collection of <code>Affiliate</code> that have the specified room affiliation
|
||||||
* sending a request in the admin namespace.
|
* sending a request in the admin namespace.
|
||||||
|
|
Loading…
Reference in a new issue