From 4a8d6f906f2df3dcee11b0fefd95c6a628e3a8be Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Fri, 17 Nov 2023 16:42:21 +0300 Subject: [PATCH] Update queueCreator.ts --- scripts/core/queueCreator.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/core/queueCreator.ts b/scripts/core/queueCreator.ts index 8516dc71..5e56bce3 100644 --- a/scripts/core/queueCreator.ts +++ b/scripts/core/queueCreator.ts @@ -1,7 +1,7 @@ import { Storage, Collection, DateTime, Logger } from '@freearhey/core' import { ChannelsParser, ConfigLoader, ApiChannel, Queue } from './' import { SITES_DIR, DATA_DIR } from '../constants' -import { SiteConfig } from 'epg-grabber' +import { Channel, SiteConfig } from 'epg-grabber' import path from 'path' import { GrabOptions } from '../commands/epg/grab' @@ -47,6 +47,7 @@ export class QueueCreator { ) if (found) { channel.logo = found.logo + channel.name = found.name } const days = this.options.days || config.days || 1