mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[bugfix] incorrect AP serialize function used serializing worker data (#3196)
This commit is contained in:
@@ -230,7 +230,7 @@ func (msg *FromFediAPI) Serialize() ([]byte, error) {
|
|||||||
|
|
||||||
// Set serialized AP object data if set.
|
// Set serialized AP object data if set.
|
||||||
if t, ok := msg.APObject.(vocab.Type); ok {
|
if t, ok := msg.APObject.(vocab.Type); ok {
|
||||||
obj, err := t.Serialize()
|
obj, err := streams.Serialize(t)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user