Skip to content

Commit

Permalink
Fix commonTags()
Browse files Browse the repository at this point in the history
  • Loading branch information
benpate committed Jan 14, 2025
1 parent f8eccba commit 3c0dc76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/builder_outbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (w Outbox) Links() sliceof.Object[model.PersonLink] {
}

// Tags returns all tags (mentions, hashtags, etc) for the stream being built
func (w Outbox) Tags() []mapof.String {
func (w Outbox) Tags() sliceof.Object[mapof.String] {
return slice.Map(w._user.Hashtags, func(tag string) mapof.String {
return mapof.String{
"Name": tag,
Expand Down

0 comments on commit 3c0dc76

Please sign in to comment.