fix always nil meta

This commit is contained in:
Stanislav Seletskiy 2019-08-13 16:53:37 +03:00
parent 2369954b08
commit eb9f094a2d
No known key found for this signature in database
GPG Key ID: E6B40F71C367E6B5

View File

@ -119,5 +119,5 @@ func ExtractMeta(data []byte) (*Meta, []byte, error) {
)
}
return nil, data[offset+1:], nil
return meta, data[offset+1:], nil
}