Fix up times and remove extraneous api inject from NovelList.razor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-07-17 22:26:22 -04:00
parent cbf5ec076d
commit 12a1f48fbd
4 changed files with 9 additions and 12 deletions

View File

@@ -32,6 +32,6 @@ public class KakuyomuScraper : AbstractScraper
string novelUrl)
{
var datePosted = linkNode.SelectSingleNode(ChapterPostedPattern).Attributes["datetime"].Value;
return (DateTime.Parse(datePosted), null);
return (DateTime.Parse(datePosted).ToUniversalTime(), null);
}
}