From 27171a78ded38a7142aecfcaa75ede86f73b7a5b Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 24 Mar 2025 11:56:42 +0100 Subject: [feature] Parse funkwhale `Album` as Statusable to allow barebones interacting with bandwagon (#3931) * bump activity version * parse funkwhale / bandwagon album as statusable --- .../activity/streams/gen_resolver_utils.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go') diff --git a/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go b/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go index a08c8f68c..6e90035e7 100644 --- a/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go +++ b/vendor/codeberg.org/superseriousbusiness/activity/streams/gen_resolver_utils.go @@ -55,6 +55,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsAdd) error { t = i return nil + }, func(ctx context.Context, i vocab.FunkwhaleAlbum) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsAnnounce) error { t = i return nil @@ -70,6 +73,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsArticle) error { t = i return nil + }, func(ctx context.Context, i vocab.FunkwhaleArtist) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsAudio) error { t = i return nil @@ -148,6 +154,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsLeave) error { t = i return nil + }, func(ctx context.Context, i vocab.FunkwhaleLibrary) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsLike) error { t = i return nil @@ -232,6 +241,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsTombstone) error { t = i return nil + }, func(ctx context.Context, i vocab.FunkwhaleTrack) error { + t = i + return nil }, func(ctx context.Context, i vocab.ActivityStreamsTravel) error { t = i return nil -- cgit v1.2.3