This commit is contained in:
fiaxh 2020-09-03 22:52:07 +02:00
parent 49bcbdaa51
commit 2d31d9d470
5 changed files with 3 additions and 9 deletions

View File

@ -97,7 +97,8 @@ public class EntityInfo : StreamInteractionModule, Object {
string? caps_hash = EntityCapabilities.get_caps_hash(presence);
if (caps_hash == null) return;
/*db.entity.upsert()
/* TODO check might_be_groupchat before storing
db.entity.upsert()
.value(db.entity.account_id, account.id, true)
.value(db.entity.jid_id, db.get_jid_id(presence.from), true)
.value(db.entity.resource, presence.from.resourcepart, true)

View File

@ -74,7 +74,7 @@ SOURCES
"src/module/xep/0082_date_time_profiles.vala"
"src/module/xep/0084_user_avatars.vala"
"src/module/xep/0085_chat_state_notifications.vala"
"src/module/xep/0115_entitiy_capabilities.vala"
"src/module/xep/0115_entity_capabilities.vala"
"src/module/xep/0166_jingle.vala"
"src/module/xep/0184_message_delivery_receipts.vala"
"src/module/xep/0191_blocking_command.vala"

View File

@ -5,8 +5,6 @@ namespace Xmpp.Xep.ServiceDiscovery {
public class Flag : XmppStreamFlag {
public static FlagIdentity<Flag> IDENTITY = new FlagIdentity<Flag>(NS_URI, "service_discovery");
private HashMap<Jid, Gee.List<Item>?> entity_items = new HashMap<Jid, Gee.List<Item>?>(Jid.hash_func, Jid.equals_func);
private Gee.Set<string> own_features_ = new HashSet<string>();
public Gee.List<string> own_features {
owned get {
@ -21,10 +19,6 @@ public class Flag : XmppStreamFlag {
owned get { return own_identities_.read_only_view; }
}
public void set_entity_items(Jid jid, Gee.List<Item>? features) {
entity_items[jid] = features;
}
public void add_own_feature(string feature) {
if (own_features_.contains(feature)) {
warning("Tried to add the feature %s a second time".printf(feature));

View File

@ -80,7 +80,6 @@ public class Module : XmppStreamModule, Iq.Handler {
Iq.Stanza iq_result = yield stream.get_module(Iq.Module.IDENTITY).send_iq_async(stream, iq);
ItemsResult? result = ItemsResult.create_from_iq(iq_result);
stream.get_flag(Flag.IDENTITY).set_entity_items(iq_result.from, result != null ? result.items : null);
return result;
}