Merge pull request #4647 from iptv-org/update-db-js

Update db.js
This commit is contained in:
Dum4G
2021-09-21 14:21:31 +03:00
committed by GitHub

View File

@@ -84,9 +84,8 @@ db.channels = {
if (!this.duplicates) {
const buffer = []
output = output.filter(channel => {
const info = channel.getInfo()
if (buffer.includes(info)) return false
buffer.push(info)
if (buffer.includes(channel.hash)) return false
buffer.push(channel.hash)
return true
})