From 56e77ca20991a70c33c2f4a3179a0a7bde851615 Mon Sep 17 00:00:00 2001 From: EpicRandomGuy2 <163953013+EpicRandomGuy2@users.noreply.github.com> Date: Tue, 27 Aug 2024 23:09:32 -0400 Subject: [PATCH] Hotfix for incorrect name change assignments Fixed a bug where too many maps were getting their name changed due to Notion API returning incorrect data --- legend_lore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legend_lore.py b/legend_lore.py index a39c876..fd06e5f 100644 --- a/legend_lore.py +++ b/legend_lore.py @@ -159,7 +159,7 @@ def main(): # Just to keep track of script progress count = 0 for name in NAME_CHANGE: - notion.send_updated_username_to_notion(name) + notion.send_updated_username_to_notion(name, all_subreddit_posts) print(count) count += 1