Skip to content

Commit

Permalink
打印发布人主页 nilaoda#648
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed Nov 11, 2023
1 parent 77e83d7 commit f0a99b8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions BBDown/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@ public static async Task<(string fetchedAid, VInfo vInfo, string apiType)> GetVi
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;
if (!string.IsNullOrEmpty(mid))
{
Log($"UP主页: https://space.bilibili.com/{mid}");
}
string apiType = myOption.UseTvApi ? "TV" : (myOption.UseAppApi ? "APP" : (myOption.UseIntlApi ? "INTL" : "WEB"));

//打印分P信息
Expand Down

0 comments on commit f0a99b8

Please sign in to comment.