Update create.js

This commit is contained in:
Aleksandr Statciuk 2023-01-05 12:08:23 +03:00
parent 0b25f25390
commit e0e9029177

View file

@ -44,8 +44,6 @@ async function createQueue() {
const config = require(file.resolve(configPath)) const config = require(file.resolve(configPath))
if (config.skip) continue if (config.skip) continue
const filename = file.basename(filepath) const filename = file.basename(filepath)
const [__, region] = filename.match(/_([a-z-]+)\.channels\.xml/i) || [null, null]
const groupId = `${region}/${site}`
for (const channel of channels) { for (const channel of channels) {
if (!channel.site || !channel.id) continue if (!channel.site || !channel.id) continue
const found = api.channels.find({ id: channel.id }) const found = api.channels.find({ id: channel.id })
@ -59,14 +57,9 @@ async function createQueue() {
channel, channel,
date: dString, date: dString,
configPath, configPath,
groups: [],
error: null error: null
} }
} }
if (!queue[key].groups.includes(groupId)) {
queue[key].groups.push(groupId)
}
} }
} }
} catch (err) { } catch (err) {