workaround issue with TV not returning any shortDescription
This commit is contained in:
parent
7c0e26f7f8
commit
6ca59654ba
1 changed files with 5 additions and 0 deletions
|
@ -45,6 +45,11 @@ export const youtubePlayerParsing = async (
|
|||
|
||||
const streamingData = video.streaming_data;
|
||||
|
||||
// WORKAROUND the issue with TV client not returning any short description
|
||||
if (!videoData.videoDetails.shortDescription) {
|
||||
videoData.videoDetails.shortDescription = "";
|
||||
}
|
||||
|
||||
// Modify the original YouTube response to include deciphered URLs
|
||||
if (streamingData && videoData && videoData.streamingData) {
|
||||
const ecatcherServiceTracking = videoData.responseContext
|
||||
|
|
Loading…
Reference in a new issue