From 5f8249ec54f17bd524de432c4bc7945955096d1b Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 20 Apr 2020 15:11:09 -0500 Subject: [PATCH] Bump the number of items in the home timeline to 100. --- .../Account/FeedProvider/Twitter/TwitterFeedProvider.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Frameworks/Account/FeedProvider/Twitter/TwitterFeedProvider.swift b/Frameworks/Account/FeedProvider/Twitter/TwitterFeedProvider.swift index aada4c2ce..a7dd2771f 100644 --- a/Frameworks/Account/FeedProvider/Twitter/TwitterFeedProvider.swift +++ b/Frameworks/Account/FeedProvider/Twitter/TwitterFeedProvider.swift @@ -159,6 +159,7 @@ public struct TwitterFeedProvider: FeedProvider { switch urlComponents.path { case "/", "/home": + parameters["count"] = 100 api = "statuses/home_timeline.json" case "/notifications/mentions": api = "statuses/mentions_timeline.json"