mirror of
https://github.com/bellingcat/cisticola.git
synced 2026-06-08 03:18:34 +03:00
ensured that Gettr username is lowercase for API requests to work correctly
This commit is contained in:
@@ -23,7 +23,7 @@ class GettrScraper(Scraper):
|
||||
@logger.catch
|
||||
def get_posts(self, channel: Channel, since: ScraperResult = None, archive_media: bool = True) -> Generator[ScraperResult, None, None]:
|
||||
client = PublicClient()
|
||||
username = self.get_username_from_url(channel.url)
|
||||
username = self.get_username_from_url(channel.url).lower()
|
||||
scraper = client.user_activity(username=username, type="posts")
|
||||
|
||||
for post in scraper:
|
||||
|
||||
Reference in New Issue
Block a user