1.7.1-development. Remove gigant log when updating filler.

This commit is contained in:
vexorian 2025-12-15 09:15:49 -04:00
parent 1175840b29
commit 4df39ed177
3 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# dizqueTV 1.7.0
# dizqueTV 1.7.1-development
![Discord](https://img.shields.io/discord/711313431457693727?logo=discord&logoColor=fff&style=flat-square) ![GitHub top language](https://img.shields.io/github/languages/top/vexorian/dizquetv?logo=github&style=flat-square) ![Docker Pulls](https://img.shields.io/docker/pulls/vexorian/dizquetv?logo=docker&logoColor=fff&style=flat-square)
Create live TV channel streams from media on your Plex servers.

View File

@ -35,5 +35,5 @@ module.exports = {
// staying active, it checks every 5 seconds
PLAYED_MONITOR_CHECK_FREQUENCY: 5*1000,
VERSION_NAME: "1.7.0"
VERSION_NAME: "1.7.1-development"
}

View File

@ -74,7 +74,6 @@ class FillerService extends events.EventEmitter {
let serverKey = body.import.serverName;
let key = body.import.key;
let content = await this.plexProxyService.getKeyMediaContents(serverKey, key);
console.log(JSON.stringify(content));
return content;
}