We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backend
A filter searchparam for the page /api/playlist/{playlist-id}/video/ is missing in the api.
/api/playlist/{playlist-id}/video/
The searchparam filter hide_watched has been added to the Api endpoint /api/playlist/{playlist-id}/video/
hide_watched
/api/playlist/{playlist-id}/video/ ( GET )
SearchParams: filter: "hide_watched" page: "0"
filter
page
Possibly implemented in a module way as described in #721
The text was updated successfully, but these errors were encountered:
Implemented at /api/video/ with playlist query param. See doc string here:
/api/video/
tubearchivist/backend/video/views.py
Lines 11 to 21 in 192d518
Sorry, something went wrong.
watch=continue without any videos to continue seems to cause the endpoint to respond with http 500 and "Server Error (500)"
watch=continue
"error": { "root_cause": [ { "type": "parsing_exception", "reason": "[_na] query malformed, must start with start_object", "line": 1, "col": 34 } ], "type": "x_content_parse_exception", "reason": "[1:34] [bool] failed to parse field [must]", "caused_by": { "type": "parsing_exception", "reason": "[_na] query malformed, must start with start_object", "line": 1, "col": 34 } }, "status": 400 }
{"error":"'filesize' not in SortEnum"} in backend\video\src\constants.py its media_size
media_size
But in /backend/user/src/user_config.py its filesize
filesize
VALID_SORT_BY = [ "published", "downloaded", "views", "likes", "duration", "filesize", ] ``` Can we change one of them to have them in sync?
fix pagination for empty hits return, #732
5fc8f4d
No branches or pull requests
Domain
Backend
Description
Is your feature request related to a problem? Please describe.
A filter searchparam for the page
/api/playlist/{playlist-id}/video/
is missing in the api.Describe the solution you'd like
The searchparam filter
hide_watched
has been added to the Api endpoint/api/playlist/{playlist-id}/video/
Additional context
/api/playlist/{playlist-id}/video/
( GET )SearchParams:
filter
: "hide_watched"page
: "0"Possibly implemented in a module way as described in #721
The text was updated successfully, but these errors were encountered: