aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar divyanshu <[email protected]>2022-10-29 20:11:56 +0530
committerGravatar divyanshu <[email protected]>2022-10-29 20:11:56 +0530
commitac58e84e3f8780e7d9b9c0a6642159badb0454be (patch)
treeead9dbfbf8d39fe4229c8f62d6ecf595769bd3ee
parentCatch more status codes in Wolfram commands (#1136) (diff)
updated bot/exts/core/help.py for Issue #1122
-rw-r--r--bot/exts/core/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/core/help.py b/bot/exts/core/help.py
index fa9c2e03..30deaff4 100644
--- a/bot/exts/core/help.py
+++ b/bot/exts/core/help.py
@@ -220,11 +220,11 @@ class HelpSession:
async def prepare(self) -> None:
"""Sets up the help session pages, events, message and reactions."""
await self.build_pages()
+ await self.update_page()
self._bot.add_listener(self.on_reaction_add)
self._bot.add_listener(self.on_message_delete)
- await self.update_page()
self.add_reactions()
def add_reactions(self) -> None: