Skip to content

Commit

Permalink
Pipe through user_id param if specified for reposts endopint
Browse files Browse the repository at this point in the history
  • Loading branch information
schottra committed Jul 30, 2024
1 parent 885479a commit faab24a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def _get_repost_feed_for_user(

if args.get("with_users", False):
user_id_list = get_users_ids(feed_results)
users = get_users_by_id(session, user_id_list)
users = get_users_by_id(session, user_id_list, current_user_id=current_user_id)
for result in feed_results:
if "playlist_owner_id" in result:
user = users[result["playlist_owner_id"]]
Expand Down

0 comments on commit faab24a

Please sign in to comment.