[#164] sdk/object: Return nil parent if parent fields are empty

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-09-30 18:40:57 +03:00 committed by Leonard Lyubich
parent ae81f4584e
commit 9799e5d48c
2 changed files with 14 additions and 2 deletions

View file

@ -273,10 +273,17 @@ func (o *rwObject) GetParent() *Object {
GetHeader().
GetSplit()
parSig := h.GetParentSignature()
parHdr := h.GetParentHeader()
if parSig == nil && parHdr == nil {
return nil
}
oV2 := new(object.Object)
oV2.SetObjectID(h.GetParent())
oV2.SetSignature(h.GetParentSignature())
oV2.SetHeader(h.GetParentHeader())
oV2.SetSignature(parSig)
oV2.SetHeader(parHdr)
return NewFromV2(oV2)
}