From 5be011b8d980f7ec1224b9c1f83e7aead1b285fe Mon Sep 17 00:00:00 2001 From: nanos Date: Mon, 20 Mar 2023 21:02:38 +0000 Subject: [PATCH] Fix bug in getting follow requests --- find_posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find_posts.py b/find_posts.py index 0fdd171..2ca65f0 100644 --- a/find_posts.py +++ b/find_posts.py @@ -74,7 +74,7 @@ def pull_context( add_following_posts(server, access_token, followers, known_followings, seen_urls) if max_follow_requests > 0: - log(f"Getting posts from {backfill_followings_for_user}'s last {max_follow_requests} follow requests") + log(f"Getting posts from last {max_follow_requests} follow requests") user_id = get_user_id(server, backfill_followings_for_user) follow_requests = get_new_follow_requests(server, access_token, max_follow_requests, known_followings) add_following_posts(server, access_token, follow_requests, known_followings, seen_urls)