From 84f1c9cbfa55ae83871be3498dceaf263c00cecb Mon Sep 17 00:00:00 2001 From: d60 Date: Thu, 2 May 2024 20:51:17 +0900 Subject: [PATCH] Fixed twikit_async/_get_user_friendship --- twikit/__init__.py | 2 +- twikit/twikit_async/client.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/twikit/__init__.py b/twikit/__init__.py index b88ed812..f1b6154a 100644 --- a/twikit/__init__.py +++ b/twikit/__init__.py @@ -6,7 +6,7 @@ A Python library for interacting with the Twitter API. """ -__version__ = '1.5.13' +__version__ = '1.5.14' from .bookmark import BookmarkFolder from .client import Client diff --git a/twikit/twikit_async/client.py b/twikit/twikit_async/client.py index 86694668..b93a38ab 100644 --- a/twikit/twikit_async/client.py +++ b/twikit/twikit_async/client.py @@ -2801,6 +2801,7 @@ async def _get_user_friendship( continue if user_info[0].get('__typename') == 'UserUnavailable': continue + results.append(User(self, user_info[0])) elif entry_id.startswith('cursor-bottom'): next_cursor = item['content']['value']