Skip to content

Commit

Permalink
fix(misskey-js): wrong hashtag channel param type (#14611)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyoshoka authored Sep 23, 2024
1 parent 76b9bc4 commit 2c61535
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/misskey-js/etc/misskey-js.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ export type Channels = {
};
hashtag: {
params: {
q?: string;
q: string[][];
};
events: {
note: (payload: Note) => void;
Expand Down
2 changes: 1 addition & 1 deletion packages/misskey-js/src/streaming.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export type Channels = {
};
hashtag: {
params: {
q?: string;
q: string[][];
};
events: {
note: (payload: Note) => void;
Expand Down

0 comments on commit 2c61535

Please sign in to comment.