Skip to content

Commit

Permalink
鈾伙笍 Fetch 100 tweets at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Sep 22, 2020
1 parent dd337c7 commit 41b81b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/twitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface Tweet {
text: string;
}

export const getRecentTweets = async (count: number = 2) => {
export const getRecentTweets = async (count: number = 100) => {
if (integrationConfig("twitter").tweets) {
const response: Array<Tweet> = await client.get("statuses/user_timeline", {
screen_name: config("twitterScreenName") || "",
Expand Down

0 comments on commit 41b81b8

Please sign in to comment.