Skip to content

Commit

Permalink
Merge pull request #67 from vitalygashkov/next
Browse files Browse the repository at this point in the history
Fixed receiving session data after successful auth in Wink; display error reading device keys
  • Loading branch information
vitalygashkov authored Feb 24, 2024
2 parents ab4d8a6 + 2a5c344 commit d56a195
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamyx",
"version": "3.6.35",
"version": "3.6.36",
"author": "Vitaly Gashkov <[email protected]>",
"description": "Command-line video downloader",
"main": "dist/streamyx.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/wive
Submodule wive updated from 4a704b to 6d06e3
1 change: 0 additions & 1 deletion src/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class Downloader {
if (pssh) {
contentKeys = await getDecryptionKeys(pssh, drmConfig);
if (!contentKeys?.length) {
logger.debug(`Decryption keys could not be obtained`);
logger.debug(`Trying to decrypt through a CDM adapter (slower process)`);
decryptersPool = await getDecryptersPool(pssh, drmConfig, this._params.connections);
}
Expand Down
1 change: 1 addition & 0 deletions src/drm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const getDecryptionKeys = async (pssh: string, drmConfig: any) => {
});
return contentKeys;
} catch (e) {
logger.error('Decryption keys could not be obtained');
logger.debug(String(e));
return [];
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers

0 comments on commit d56a195

Please sign in to comment.