remove bundle requests so session creation doesn't fail

This commit is contained in:
Samuel Hand 2018-05-28 01:01:37 +01:00 committed by Marvin W
parent 60982bff67
commit 52e116ee44
1 changed files with 1 additions and 0 deletions

View File

@ -197,6 +197,7 @@ public class StreamModule : XmppStreamModule {
if (active_bundle_requests.add(jid.bare_jid.to_string() + @":$device_id")) {
if (Plugin.DEBUG) print(@"OMEMO: Asking for bundle from $(jid.bare_jid.to_string()):$device_id\n");
stream.get_module(Pubsub.Module.IDENTITY).request(stream, jid.bare_jid, @"$NODE_BUNDLES:$device_id", (stream, jid, id, node) => {
stream.get_module(IDENTITY).active_bundle_requests.remove(jid.bare_jid.to_string() + @":$device_id");
bundle_fetched(jid, device_id, new Bundle(node));
});
}