diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/twitch.cr | 6 |
1 files changed, 5 insertions, 1 deletions
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" |