From 27a408876e179d62dc25050a6f386bf2d9b80a9b Mon Sep 17 00:00:00 2001 From: Minijackson Date: Mon, 16 Jul 2018 11:04:19 +0200 Subject: Fix empty function -_-" --- common/storage/entitystore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp index 672eea1..71690fe 100644 --- a/common/storage/entitystore.cpp +++ b/common/storage/entitystore.cpp @@ -502,9 +502,9 @@ void EntityStore::readLatest(const QByteArray &type, const Identifier &id, const [&](const DataStore::Error &error) { SinkWarningCtx(d->logCtx) << "Error during readLatest query: " << error.message << id; }); } -void EntityStore::readLatest(const QByteArray &type, const QByteArray &key, const std::function callback) +void EntityStore::readLatest(const QByteArray &type, const QByteArray &uid, const std::function callback) { - + readLatest(type, Identifier::fromDisplayByteArray(uid), callback); } void EntityStore::readLatest(const QByteArray &type, const Identifier &uid, const std::function callback) -- cgit v1.2.3