Misc Bugfixes (#637)

* Use null coalescing for comicinfo

* Removed Sentry. The integrations were not providing any userful information.

* Updated to the latest versions of dependencies
This commit is contained in:
Joseph Milazzo
2021-10-04 17:18:42 -07:00
committed by GitHub
parent 7c4e79ec55
commit 2183bf2d59
10 changed files with 20 additions and 272 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ namespace API.Services
if (Parser.Parser.IsPdf(firstFile.FilePath)) return false;
var comicInfo = GetComicInfo(series.Format, firstFile);
if (string.IsNullOrEmpty(comicInfo.Summary)) return false;
if (string.IsNullOrEmpty(comicInfo?.Summary)) return false;
series.Summary = comicInfo.Summary;
return true;