diff options
Diffstat (limited to 'common/facade.cpp')
-rw-r--r-- | common/facade.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/facade.cpp b/common/facade.cpp index cdd06f9..1045dac 100644 --- a/common/facade.cpp +++ b/common/facade.cpp | |||
@@ -64,7 +64,7 @@ KAsync::Job<void> GenericFacade<DomainType>::create(const DomainType &domainObje | |||
64 | } | 64 | } |
65 | flatbuffers::FlatBufferBuilder entityFbb; | 65 | flatbuffers::FlatBufferBuilder entityFbb; |
66 | mDomainTypeAdaptorFactory->createBuffer(domainObject, entityFbb); | 66 | mDomainTypeAdaptorFactory->createBuffer(domainObject, entityFbb); |
67 | return mResourceAccess->sendCreateCommand(bufferTypeForDomainType(), BufferUtils::extractBuffer(entityFbb)); | 67 | return mResourceAccess->sendCreateCommand(domainObject.identifier(), bufferTypeForDomainType(), BufferUtils::extractBuffer(entityFbb)); |
68 | } | 68 | } |
69 | 69 | ||
70 | template <class DomainType> | 70 | template <class DomainType> |