summaryrefslogtreecommitdiffstats
path: root/common/domain/event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/domain/event.cpp')
-rw-r--r--common/domain/event.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/domain/event.cpp b/common/domain/event.cpp
index 776fa50..c435c6b 100644
--- a/common/domain/event.cpp
+++ b/common/domain/event.cpp
@@ -32,7 +32,7 @@
32 32
33using namespace Akonadi2::ApplicationDomain; 33using namespace Akonadi2::ApplicationDomain;
34 34
35ResultSet TypeImplementation<Event>::queryIndexes(const Akonadi2::Query &query, const QByteArray &resourceInstanceIdentifier) 35ResultSet TypeImplementation<Event>::queryIndexes(const Akonadi2::Query &query, const QByteArray &resourceInstanceIdentifier, QSet<QByteArray> &appliedFilters)
36{ 36{
37 QVector<QByteArray> keys; 37 QVector<QByteArray> keys;
38 if (query.propertyFilter.contains("uid")) { 38 if (query.propertyFilter.contains("uid")) {
@@ -43,6 +43,7 @@ ResultSet TypeImplementation<Event>::queryIndexes(const Akonadi2::Query &query,
43 [](const Index::Error &error) { 43 [](const Index::Error &error) {
44 Warning() << "Error in index: " << error.message; 44 Warning() << "Error in index: " << error.message;
45 }); 45 });
46 appliedFilters << "uid";
46 } 47 }
47 return ResultSet(keys); 48 return ResultSet(keys);
48} 49}