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',
url: videoMetadata.thumbUrl,
url: videoPublishMeta.thumbUrl,
},
],
},
content: {
description: videoMetadata.description,
tags: videoMetadata.tags_v2,
description: videoPublishMeta.description,
tags: videoPublishMeta.tags_v2,
},
};
}