Skip to content

Commit 35cad26

Browse files
committed
fix: Fix type of hashtags to be an array in Search entity
1 parent e886410 commit 35cad26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mastodon/entities/v2/search.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export interface Search {
1010
/** Statuses which match the given query */
1111
statuses: Status[];
1212
/** Hashtags which match the given query */
13-
hashtags: Tag;
13+
hashtags: Tag[];
1414
}

0 commit comments

Comments
 (0)