Merge pull request #26 from BohdanSmetanyuk/bug/assign_entity_views_to_edge

fix in EntityViewUpdateMsg constructing
This commit is contained in:
VoBa 2020-07-16 16:49:49 +03:00 committed by GitHub
commit 9db41693bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,8 +45,8 @@ public class EntityViewUpdateMsgConstructor {
.setIdLSB(entityView.getId().getId().getLeastSignificantBits())
.setName(entityView.getName())
.setType(entityView.getType())
.setIdMSB(entityView.getEntityId().getId().getMostSignificantBits())
.setIdLSB(entityView.getEntityId().getId().getLeastSignificantBits())
.setEntityIdMSB(entityView.getEntityId().getId().getMostSignificantBits())
.setEntityIdLSB(entityView.getEntityId().getId().getLeastSignificantBits())
.setEntityType(entityType);
return builder.build();
}