Skip to content

Commit

Permalink
fix vod streams available on other server
Browse files Browse the repository at this point in the history
all streams should be found now. it was missing the server that the
stream was found on while building the vod url
  • Loading branch information
jwallet committed Dec 31, 2017
1 parent 826f143 commit e15d2ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NHLGames/Objects/GameManager.vb
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,14 @@ Namespace Objects
If index = 0 OrElse index + 5 <> spliter.Length - 1 Then
Return String.Empty
Else
Return String.Format("http://hlsvod-akc.med2.med.nhl.com/ps01/{0}/{1}/{2}/{3}/{4}/{5}",
spliter(index),
Return String.Format("http://hlsvod-akc.med2.med.nhl.com/{0}/nhl/{1}/{2}/{3}/{4}/{5}",
spliter(index -1),
spliter(index +1),
spliter(index +2),
spliter(index +3),
spliter(index +4),
spliter(index +5))
'/ps01/nhl/2000/01/01/NHL_GAME_VIDEO_TEAMTEAM_M2_VISIT_20000101_1234567890123/master_wired{_web}{60}.m3u8
'/ls07/nhl/2000/01/01/NHL_GAME_VIDEO_TEAMTEAM_M2_VISIT_20000101_1234567890123/master_wired{_web}{60}.m3u8
End If
End If

Expand Down

0 comments on commit e15d2ce

Please sign in to comment.