Skip to content
This repository was archived by the owner on Apr 19, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions YoutubeExtractor/YoutubeExtractor/DownloadUrlResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private static string GetHtml5PlayerVersion(string url)

private static List<Format> GetStreamMap(YoutubeModel model)
{
return model.StreamingData.Formats.ToList();
return model.StreamingData.Formats.ToList(); //getting exception
}

private static IEnumerable<VideoInfo> GetVideoInfos(YoutubeModel model)
Expand Down Expand Up @@ -291,4 +291,4 @@ private static void ThrowYoutubeParseException(Exception innerException, string
"Please report this bug at www.github.com/flagbug/YoutubeExtractor/issues", innerException);
}
}
}
}