diff options
author | 2023-07-27 20:54:30 +0200 | |
---|---|---|
committer | 2023-07-27 20:54:30 +0200 | |
commit | cf4bd700fb9fd1c6915eefe12437a9e074d84c9b (patch) | |
tree | f755a27a405a9e000daa6bd6eac9f153518c02e0 /vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go | |
parent | [chore] fix merge issue (#2029) (diff) | |
download | gotosocial-cf4bd700fb9fd1c6915eefe12437a9e074d84c9b.tar.xz |
[chore] Update activity dependency (#2031)
Diffstat (limited to 'vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go')
-rw-r--r-- | vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go index 0b9bfbb1e..8af20ab1a 100644 --- a/vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go @@ -73,18 +73,12 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsBlock) error { t = i return nil - }, func(ctx context.Context, i vocab.ForgeFedBranch) error { - t = i - return nil }, func(ctx context.Context, i vocab.ActivityStreamsCollection) error { t = i return nil }, func(ctx context.Context, i vocab.ActivityStreamsCollectionPage) error { t = i return nil - }, func(ctx context.Context, i vocab.ForgeFedCommit) error { - t = i - return nil }, func(ctx context.Context, i vocab.ActivityStreamsCreate) error { t = i return nil @@ -115,6 +109,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsGroup) error { t = i return nil + }, func(ctx context.Context, i vocab.TootHashtag) error { + t = i + return nil }, func(ctx context.Context, i vocab.TootIdentityProof) error { t = i return nil @@ -187,9 +184,6 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.W3IDSecurityV1PublicKey) error { t = i return nil - }, func(ctx context.Context, i vocab.ForgeFedPush) error { - t = i - return nil }, func(ctx context.Context, i vocab.ActivityStreamsQuestion) error { t = i return nil @@ -205,9 +199,6 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsRemove) error { t = i return nil - }, func(ctx context.Context, i vocab.ForgeFedRepository) error { - t = i - return nil }, func(ctx context.Context, i vocab.ActivityStreamsService) error { t = i return nil @@ -217,12 +208,6 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro }, func(ctx context.Context, i vocab.ActivityStreamsTentativeReject) error { t = i return nil - }, func(ctx context.Context, i vocab.ForgeFedTicket) error { - t = i - return nil - }, func(ctx context.Context, i vocab.ForgeFedTicketDependency) error { - t = i - return nil }, func(ctx context.Context, i vocab.ActivityStreamsTombstone) error { t = i return nil |