Skip to content

Commit

Permalink
fix: maybe lose xtream data.
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyroid committed Mar 24, 2024
1 parent 316f181 commit 1d442ec
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,17 @@ internal class XtreamParserImpl @Inject constructor(
if (requiredLives) launch {
newSequenceCall<XtreamLive>(liveStreamsUrl)
.asFlow()
.collect { live -> trySend(live) }
.collect { live -> send(live) }
}
if (requiredVods) launch {
newSequenceCall<XtreamVod>(vodStreamsUrl)
.asFlow()
.collect { vod -> trySend(vod) }
.collect { vod -> send(vod) }
}
if (requiredSeries) launch {
newSequenceCall<XtreamSerial>(seriesStreamsUrl)
.asFlow()
.collect { serial -> trySend(serial) }
.collect { serial -> send(serial) }
}
}

Expand Down

0 comments on commit 1d442ec

Please sign in to comment.