diff options
Diffstat (limited to 'src/server/cache')
| -rw-r--r-- | src/server/cache/YoutubeCache.hx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/server/cache/YoutubeCache.hx b/src/server/cache/YoutubeCache.hx index 8976f89..cb3d954 100644 --- a/src/server/cache/YoutubeCache.hx +++ b/src/server/cache/YoutubeCache.hx @@ -189,11 +189,9 @@ class YoutubeCache { } function getInfoAsync(url:String, useCookies = false):Promise<VideoInfo> { - return ytDlp.execAsync(url, { - dumpSingleJson: true, - quiet: true, + return cast ytDlp.getInfoAsync(url, { cookies: useCookies ? getCookiesPathOrNull() : null, - }).then(data -> Json.parse(data)); + }); } function getCookiesPathOrNull():Null<String> { |
