Update index.js

This commit is contained in:
freearhey 2021-03-19 22:37:31 +03:00
parent 3488f36a4d
commit 68b1894240
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ async function main() {
const queue = []
channels.forEach(channel => {
channel.logo = config.logo ? config.logo(channel) : null
channel.logo = config.logo ? config.logo({ channel }) : null
dates.forEach(date => {
queue.push({ date, channel })
})