Skip to content

Commit

Permalink
Actually fix not merging when error thrown while monitoring channel
Browse files Browse the repository at this point in the history
  • Loading branch information
Kethsar committed Feb 2, 2024
1 parent aba3afb commit 84c36d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player_response.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func (di *DownloadInfo) GetPlayerResponse(videoHtml []byte) (*PlayerResponse, er
func (di *DownloadInfo) GetPlayablePlayerResponse() (retrieved int, pr *PlayerResponse, selectedQualities []string) {
firstWait := true
isLiveURL := di.LiveURL
waitOnLiveURL := isLiveURL && di.RetrySecs > 0
waitOnLiveURL := isLiveURL && di.RetrySecs > 0 && !di.InProgress
liveWaited := 0
retryCount := 0
var secsLate int
Expand Down

0 comments on commit 84c36d8

Please sign in to comment.