Skip to content

Commit

Permalink
Merge pull request #145 from jwallet/master
Browse files Browse the repository at this point in the history
 fix vod streams available on other server
  • Loading branch information
NHLGames committed Dec 31, 2017
2 parents 1d39255 + a5c519e commit 9529415
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 9529415

Please sign in to comment.