Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed Aug 19, 2020
1 parent b22fb03 commit d632d43
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BBDown/BBDown.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>1.2.1</Version>
<Version>1.2.2</Version>
<Description>BBDown是一个免费且便捷高效的哔哩哔哩下载/解析软件.</Description>
</PropertyGroup>

Expand Down
4 changes: 3 additions & 1 deletion BBDown/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class MyOption
public static int Main(params string[] args)
{
ServicePointManager.DefaultConnectionLimit = 2048;
ServicePointManager.ServerCertificateValidationCallback = delegate
ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) =>
{
return true;
};
Expand Down Expand Up @@ -546,6 +546,8 @@ private static async Task DoWorkAsync(MyOption myOption)
else if (webJson.Contains("\"durl\":[")) //flv
{
bool flag = false;
//默认以最高清晰度解析
webJson = GetPlayJson(aid, p.cid, epId, tvApi, bangumi, "120");
reParse:
List<string> clips = new List<string>();
List<string> dfns = new List<string>();
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ Commands:
<details>
<summary>点击查看详情</summary>

* 2020年8月19日 21:18
修复1.2.1中TV模式下没有获取到可用最高清晰度的问题

* 2020年8月18日 21:19
SSL处理
修正视频发布时间时区问题
Expand Down

0 comments on commit d632d43

Please sign in to comment.