[bugfix] incorrect AP serialize function used serializing worker data (#3196)

This commit is contained in:
kim
2024-08-12 16:23:24 +00:00
committed by GitHub
parent 871d062bd6
commit 4cb3e4d3e6

View File

@@ -230,7 +230,7 @@ func (msg *FromFediAPI) Serialize() ([]byte, error) {
// Set serialized AP object data if set.
if t, ok := msg.APObject.(vocab.Type); ok {
obj, err := t.Serialize()
obj, err := streams.Serialize(t)
if err != nil {
return nil, err
}