diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/doc/_batch_parser.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/info/doc/_batch_parser.py b/bot/exts/info/doc/_batch_parser.py index ebae6efb8..4a6d9b544 100644 --- a/bot/exts/info/doc/_batch_parser.py +++ b/bot/exts/info/doc/_batch_parser.py @@ -108,6 +108,7 @@ class BatchParser:          Not safe to run while `self.clear` is running.          """ +        self._item_futures[doc_item].user_requested = True          if (symbols_to_queue := self._page_symbols.get(doc_item.url)) is not None:              async with bot.instance.http_session.get(doc_item.url) as response:                  soup = BeautifulSoup(await response.text(encoding="utf8"), "lxml") @@ -123,7 +124,6 @@ class BatchParser:          with suppress(ValueError):              # If the item is not in the list then the item is already parsed or is being parsed              self._move_to_front(doc_item) -        self._item_futures[doc_item].user_requested = True          return await self._item_futures[doc_item]      async def _parse_queue(self) -> None: | 
