Skip to content

Commit

Permalink
Fix #773
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed Nov 12, 2023
1 parent 1a2acde commit 7148a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BBDown/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public static (Dictionary<string, byte> encodingPriority, Dictionary<string, int
long pubTime = vInfo.PubTime;
LogColor("视频标题: " + title);
Log("发布时间: " + FormatTimeStamp(pubTime, "yyyy-MM-dd HH:mm:ss zzz"));
var mid = vInfo.PagesInfo.First(p => !string.IsNullOrEmpty(p.ownerMid))?.ownerMid;
var mid = vInfo.PagesInfo.FirstOrDefault(p => !string.IsNullOrEmpty(p.ownerMid))?.ownerMid;
if (!string.IsNullOrEmpty(mid))
{
Log($"UP主页: https://space.bilibili.com/{mid}");
Expand Down

0 comments on commit 7148a96

Please sign in to comment.