continue cleaning + simplify mtel.ba (right now broken EPG on backend)

This commit is contained in:
theofficialomega
2025-07-18 23:49:04 +02:00
parent 6b3e17861a
commit 5e953b6955
11 changed files with 95 additions and 53 deletions

View File

@@ -1,5 +1,4 @@
import { SiteConfig } from 'epg-grabber'
import { deepMerge } from '../functions'
import { pathToFileURL } from 'url'
export class ConfigLoader {
@@ -28,6 +27,6 @@ export class ConfigLoader {
channels: undefined
}
return deepMerge(defaultConfig, config) as SiteConfig
return { ...defaultConfig, ...config } as SiteConfig
}
}