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)',