Update remove-duplicates.js
This commit is contained in:
parent
da50969d3c
commit
d45b8884c2
|
@ -47,8 +47,6 @@ async function removeDuplicates(playlist) {
|
||||||
return utils.removeProtocol(item.url) === utils.removeProtocol(channel.url)
|
return utils.removeProtocol(item.url) === utils.removeProtocol(channel.url)
|
||||||
})
|
})
|
||||||
if (sameUrl) return false
|
if (sameUrl) return false
|
||||||
const sameHash = buffer.find(item => item.hash === channel.hash)
|
|
||||||
if (sameHash && channel.status === 'Offline') return false
|
|
||||||
|
|
||||||
buffer.push(channel)
|
buffer.push(channel)
|
||||||
return true
|
return true
|
||||||
|
|
Loading…
Reference in New Issue