diff --git a/snscrape/modules/twitter.py b/snscrape/modules/twitter.py index 5def66f..8bbe57c 100644 --- a/snscrape/modules/twitter.py +++ b/snscrape/modules/twitter.py @@ -776,7 +776,8 @@ class _TwitterAPIScraper(snscrape.base.Scraper): newCursor = entryCursor if entryCursorStop is not None: stopOnEmptyResponse = entryCursorStop - elif entry['entryId'].startswith('cursor-showMoreThreadsPrompt-'): # E.g. 'offensive' replies button + elif entry['entryId'].startswith('cursor-showMoreThreadsPrompt-') or entry['entryId'].startswith('cursor-showmorethreads-'): + # E.g. 'offensive' replies and 'Show more replies' button promptCursor = entryCursor elif direction is _ScrollDirection.BOTH and bottomCursorAndStop is None and (entry['entryId'] == 'sq-cursor-bottom' or entry['entryId'].startswith('cursor-bottom-')): newBottomCursorAndStop = (entryCursor, entryCursorStop or False)