summaryrefslogtreecommitdiffstats
path: root/common/store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/store.cpp')
-rw-r--r--common/store.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/store.cpp b/common/store.cpp
index f5a7774..a1b3c17 100644
--- a/common/store.cpp
+++ b/common/store.cpp
@@ -371,12 +371,12 @@ QList<DomainType> Store::read(const Sink::Query &q)
371 SinkWarning() << "Null emitter for resource " << resourceInstanceIdentifier; 371 SinkWarning() << "Null emitter for resource " << resourceInstanceIdentifier;
372 } 372 }
373 result.first.exec(); 373 result.first.exec();
374 aggregatingEmitter->fetch(typename DomainType::Ptr());
375 } else { 374 } else {
376 SinkTrace() << "Couldn't find a facade for " << resourceInstanceIdentifier; 375 SinkTrace() << "Couldn't find a facade for " << resourceInstanceIdentifier;
377 // Ignore the error and carry on 376 // Ignore the error and carry on
378 } 377 }
379 } 378 }
379 aggregatingEmitter->fetch(typename DomainType::Ptr());
380 return list; 380 return list;
381} 381}
382 382