From a188fb648ba001314adbb9d5cfc0bfb77198a5b9 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Mon, 21 Nov 2016 10:10:15 +0100 Subject: sinksh list identity support --- sinksh/sinksh_utils.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sinksh') diff --git a/sinksh/sinksh_utils.cpp b/sinksh/sinksh_utils.cpp index cb53ff2..06bcb8e 100644 --- a/sinksh/sinksh_utils.cpp +++ b/sinksh/sinksh_utils.cpp @@ -51,6 +51,9 @@ StoreBase &getStore(const QString &type) } else if (type == getTypeName()) { static Store store; return store; + } else if (type == getTypeName()) { + static Store store; + return store; } qWarning() << "Trying to get a store that doesn't exist, falling back to event"; @@ -75,6 +78,8 @@ QList requestedProperties(const QString &type) return QList() << SinkResource::ResourceType::name << SinkResource::Account::name; } else if (type == getTypeName()) { return QList() << SinkAccount::AccountType::name << SinkAccount::Name::name; + } else if (type == getTypeName()) { + return QList() << Identity::Name::name << Identity::Address::name; } return QList(); } -- cgit v1.2.3