add id="current" on every published PEP item
This makes sure even misconfigured PEP nodes still get only one item, as defined in XEP-0060 §12.20.
This commit is contained in:
parent
2ae0ecec3a
commit
7983e7e03f
1 changed files with 3 additions and 0 deletions
|
@ -204,6 +204,7 @@ public class IqGenerator extends AbstractGenerator {
|
|||
|
||||
public IqPacket publishDeviceIds(final Set<Integer> ids, final Bundle publishOptions) {
|
||||
final Element item = new Element("item");
|
||||
item.setAttribute("id", "current");
|
||||
final Element list = item.addChild("list", AxolotlService.PEP_PREFIX);
|
||||
for (Integer id : ids) {
|
||||
final Element device = new Element("device");
|
||||
|
@ -216,6 +217,7 @@ public class IqGenerator extends AbstractGenerator {
|
|||
public IqPacket publishBundles(final SignedPreKeyRecord signedPreKeyRecord, final IdentityKey identityKey,
|
||||
final Set<PreKeyRecord> preKeyRecords, final int deviceId, Bundle publishOptions) {
|
||||
final Element item = new Element("item");
|
||||
item.setAttribute("id", "current");
|
||||
final Element bundle = item.addChild("bundle", AxolotlService.PEP_PREFIX);
|
||||
final Element signedPreKeyPublic = bundle.addChild("signedPreKeyPublic");
|
||||
signedPreKeyPublic.setAttribute("signedPreKeyId", signedPreKeyRecord.getId());
|
||||
|
@ -238,6 +240,7 @@ public class IqGenerator extends AbstractGenerator {
|
|||
|
||||
public IqPacket publishVerification(byte[] signature, X509Certificate[] certificates, final int deviceId) {
|
||||
final Element item = new Element("item");
|
||||
item.setAttribute("id", "current");
|
||||
final Element verification = item.addChild("verification", AxolotlService.PEP_PREFIX);
|
||||
final Element chain = verification.addChild("chain");
|
||||
for (int i = 0; i < certificates.length; ++i) {
|
||||
|
|
Reference in a new issue