BREAKING: refactor/player-parsers(sibnet): change return field of media url from video to manifest

This commit is contained in:
Kentai Radiquum 2025-07-07 13:38:39 +05:00
parent 80115f35d6
commit e6cbaa93d5
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -54,6 +54,6 @@ export async function getSibnetURL(res, url: string) {
: null
: null;
asJSON(res, { video, poster }, 200)
asJSON(res, { manifest: video, poster }, 200)
return
}