We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ff171 commit bb4732fCopy full SHA for bb4732f
resources/lib/twitch/api/helix/search.py
@@ -34,6 +34,6 @@ def get_channels(search_query, after='MA==', first=20, live_only=True, use_app_t
34
q.add_param(keys.QUERY, search_query)
35
q.add_param(keys.AFTER, Cursor.validate(after), 'MA==')
36
q.add_param(keys.FIRST, IntRange(1, 100).validate(first), 20)
37
- q.add_param(keys.LIVE_ONLY, Boolean.validate(live_only), True)
+ q.add_param(keys.LIVE_ONLY, Boolean.validate(live_only), Boolean.FALSE)
38
39
return q
0 commit comments