From 03f07e7816addd2957f29a057e03831641a42ef9 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Mon, 31 Jan 2022 18:13:45 +0100 Subject: [PATCH] Fix constructor of Entity class --- include/caosdb/entity.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/caosdb/entity.h b/include/caosdb/entity.h index 76f17b9..4d42155 100644 --- a/include/caosdb/entity.h +++ b/include/caosdb/entity.h @@ -707,6 +707,7 @@ public: : static_cast<ProtoDataType *>(nullptr)) { properties.wrapped = this->wrapped->mutable_properties(); parents.wrapped = this->wrapped->mutable_parents(); + file_descriptor.wrapped = this->wrapped->mutable_file_descriptor(); }; explicit inline Entity(EntityResponse *response) : Entity(response->mutable_entity()) { this->errors.wrapped->Swap(response->mutable_errors()); -- GitLab