From 441897ad3e982fc29b6d054e59725922fa9321e6 Mon Sep 17 00:00:00 2001 From: Max Goodhart Date: Sat, 19 Dec 2020 22:54:25 -0800 Subject: [PATCH] Remove default stream list endpoint --- example.config.toml | 5 ++--- src/node/index.js | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/example.config.toml b/example.config.toml index 5361b11..2c73905 100644 --- a/example.config.toml +++ b/example.config.toml @@ -33,9 +33,8 @@ password = "please-change-this" # Interval to refresh polled datasources #interval = 30 -# By default, we use the woke.net streams data source. -# You can add other URLs to fetch here: -json-url = ["https://woke.net/api/streams.json"] +# You can add URLs to fetch here: +json-url = [] # You can also specify .toml files on disk. Streamwall will reload the data whenever the file changes. # See example.streams.toml for a sample. diff --git a/src/node/index.js b/src/node/index.js index b288a2f..27c853a 100644 --- a/src/node/index.js +++ b/src/node/index.js @@ -82,7 +82,7 @@ function parseArgs() { .option('data.json-url', { describe: 'Fetch streams from the specified URL(s)', array: true, - default: ['https://woke.net/api/streams.json'], + default: [], }) .option('data.toml-file', { describe: 'Fetch streams from the specified file(s)',