mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
Adds option to change the delay between requests
This commit is contained in:
parent
5478aa2b24
commit
b1bcc08591
3 changed files with 8 additions and 0 deletions
|
@ -43,6 +43,11 @@ export class Grabber {
|
|||
config.request = { ...config.request, ...{ timeout } }
|
||||
}
|
||||
|
||||
if (this.options.delay !== undefined) {
|
||||
const delay = parseInt(this.options.delay)
|
||||
config.delay = delay
|
||||
}
|
||||
|
||||
const grabber =
|
||||
process.env.NODE_ENV === 'test' ? new EPGGrabberMock(config) : new EPGGrabber(config)
|
||||
const _programs = await grabber.grab(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue