Merge pull request #100 from vexorian/20200907_night

20200907 night
This commit is contained in:
vexorian 2020-09-07 22:06:12 -04:00 committed by GitHub
commit 9e89b572bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -114,7 +114,7 @@ docker run --name dizquetv -p 8000:8000 -v C:\.dizquetv:/home/node/app/.dizquetv
#### Unraid Install
Add
```
https://github.com/vexorian/dizquetv
https://github.com/vexorian/dizquetv/tree/main
```
to your "Template repositories" in the Docker tab.
Click the "Add Container" button

View File

@ -32,7 +32,7 @@ class TVGuideService
let t = (new Date()).getTime();
this.updateTime = t;
this.updateLimit = t + limit;
let channels = inputChannels.filter( ch => (ch.stealth !== true) );
let channels = inputChannels;
this.updateChannels = channels;
while( this.lastUpdate < t) {
if (this.currentUpdate == -1) {
@ -296,8 +296,10 @@ class TVGuideService
}
} else {
for (let i = 0; i < channels.length; i++) {
if(! channels[i].stealth) {
let programs = await this.getChannelPrograms(t0, t1, channels[i] );
result[ channels[i].number ] = programs;
}
}
}
return result;