Skip to content

Commit

Permalink
Merge pull request #5 from SkiTiSu/fix
Browse files Browse the repository at this point in the history
Model: 修复时间未加8小时的错误
  • Loading branch information
ThomasWFan authored Oct 27, 2016
2 parents 6ae3371 + 762283a commit 01acb0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bilibili2/Class/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public string Created_at
{
get
{
DateTime dtStart = new DateTime(1970, 1, 1);
DateTime dtStart = new DateTime(1970, 1, 1, 8, 0, 0);
long lTime = long.Parse(pubdate + "0000000");
//long lTime = long.Parse(textBox1.Text);
TimeSpan toNow = new TimeSpan(lTime);
Expand Down

0 comments on commit 01acb0f

Please sign in to comment.