Update format.js
Ignore protocol on duplicate search
This commit is contained in:
parent
33e80bb0c2
commit
0ca88e68f8
@ -87,9 +87,10 @@ async function removeDuplicates(playlist) {
|
||||
console.info(` Looking for duplicates...`)
|
||||
let buffer = {}
|
||||
const channels = playlist.channels.filter(i => {
|
||||
const result = typeof buffer[i.url] === 'undefined'
|
||||
const url = i.url.replace(/(^\w+:|^)\/\//, '')
|
||||
const result = typeof buffer[url] === 'undefined'
|
||||
if (result) {
|
||||
buffer[i.url] = true
|
||||
buffer[url] = true
|
||||
}
|
||||
|
||||
return result
|
||||
|
Loading…
x
Reference in New Issue
Block a user