Skip to content

Commit

Permalink
fix mastodon に複数画像が1枚しか投稿されてなかった
Browse files Browse the repository at this point in the history
  • Loading branch information
amay077 committed Nov 4, 2024
1 parent 74a1b11 commit 054c74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/MainContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ const postToMastodon = async (text: string, images: string[]): Promise<boolean>

}

return ids.length > 0 ? ids : undefined;
}
return ids.length > 0 ? ids : undefined;
})();

// const res = await fetch(`https://${MASTODON_HOST}/api/v1/statuses`, {
Expand Down

0 comments on commit 054c74c

Please sign in to comment.