Skip to content

Commit

Permalink
🐛 InnerTube.search: Specify continuation in request body instead of…
Browse files Browse the repository at this point in the history
… query params (#59)

Co-authored-by: Min-Chun Shih <[email protected]>
  • Loading branch information
shihs and Min-Chun Shih committed Oct 29, 2023
1 parent 22d1166 commit 80afb6d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions innertube/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,11 @@ def search(
) -> dict:
return self(
Endpoint.SEARCH,
params=utils.filter(
dict(
continuation=continuation,
ctoken=continuation,
)
),
body=utils.filter(
dict(
query=query or "",
params=params,
continuation=continuation,
)
),
)
Expand Down

0 comments on commit 80afb6d

Please sign in to comment.