fixed bug with metadata extractor

This commit is contained in:
noumantahir 2023-11-21 14:13:28 +05:00
parent 41d9c6e42b
commit ff6712004d

View File

@ -298,13 +298,13 @@ export const extractMetadata = async ({
}, },
{ {
type: 'thumbnail', type: 'thumbnail',
url: videoMetadata.thumbUrl, url: videoPublishMeta.thumbUrl,
}, },
], ],
}, },
content: { content: {
description: videoMetadata.description, description: videoPublishMeta.description,
tags: videoMetadata.tags_v2, tags: videoPublishMeta.tags_v2,
}, },
}; };
} }