tests & fix image parsing

This commit is contained in:
theofficialomega
2025-12-13 23:56:16 +01:00
parent c1c7f15399
commit 797ca2d3fd
4 changed files with 20823 additions and 12 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ module.exports = {
}
function getImage(item) {
const image = item.images.find(i => i.type === 'default' && i.sizeTag === '612x382')
const image = item.images.find(i => i.sizeTag === '612x382')
return image ? image.url : null
}