Add:Api route to sync stream data for use in android native

This commit is contained in:
advplyr
2021-12-19 18:45:56 -06:00
parent a052366dac
commit 1b03af4041
4 changed files with 51 additions and 4 deletions

View File

@@ -229,10 +229,6 @@ class Server {
// Used in development to set-up streams without authentication
if (process.env.NODE_ENV !== 'production') {
app.use('/test-hls', this.hlsController.router)
app.get('/catalog.json', (req, res) => {
Logger.error('Catalog request made', req.headers)
res.json()
})
}
this.server.listen(this.Port, this.Host, () => {