Skip to content

Commit

Permalink
Fixed twikit_async/_get_user_friendship
Browse files Browse the repository at this point in the history
  • Loading branch information
d60 committed May 2, 2024
1 parent 6a5f17f commit 84f1c9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion twikit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions twikit/twikit_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down

0 comments on commit 84f1c9c

Please sign in to comment.