Fixed showing feed title in download log

This commit is contained in:
ByteHamster 2020-03-12 00:25:53 +01:00
parent fc68fe4b9c
commit 78a86347d4
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ public class FeedParserTask implements Callable<FeedHandlerResult> {
DownloadError.SUCCESS, successful, reasonDetailed);
return result;
} else {
downloadStatus = new DownloadStatus(feed, feed.getHumanReadableIdentifier(),
downloadStatus = new DownloadStatus(feed, request.getTitle(),
reason, successful, reasonDetailed);
return null;
}