From d5858e2ef8f382b9e53308301ff7c7df3bf4b745 Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Wed, 3 May 2023 01:36:38 -0700 Subject: enable unfiltered stream listing --- util/twitch.cr | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'util') diff --git a/util/twitch.cr b/util/twitch.cr index 87908ae..43980d0 100644 --- a/util/twitch.cr +++ b/util/twitch.cr @@ -60,7 +60,11 @@ when "clips" when "game" pp JSON.parse( client.get_games( ARGV[1].to_u64? || ARGV[1] ) ) when "streams" - list_streams( settings, JSON.parse( client.get_streams( game_id = client.game_id( ARGV[1] ) ) ) ) + if ARGV[1]? + list_streams( settings, JSON.parse( client.get_streams( game_id = client.game_id( ARGV[1] ) ) ) ) + else + list_streams( settings, JSON.parse( client.get_streams() ) ) + end when "streams_kraken" list_streams_v5( settings, client, ARGV[1] ) when "hosts" -- cgit v1.2.3