We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c182a2 commit 30857feCopy full SHA for 30857fe
src/Api/Streams.php
@@ -57,7 +57,7 @@ public function getLiveStreams($channel = null, $game = null, $language = null,
57
58
$channel = trim($channel, ', ');
59
if ($this->apiVersionIsGreaterThanV4()) {
60
- foreach ($channel as $chan) {
+ foreach (explode(',', $channel) as $chan) {
61
if (!is_numeric($chan)) {
62
throw new InvalidIdentifierException('channel');
63
}
0 commit comments