Merge pull request #3921 from ByteHamster/fix-showing-title-in-log

Fixed showing feed title in download log
This commit is contained in:
H. Lehmann 2020-03-12 00:48:20 +01:00 committed by GitHub
commit b6a20a10c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}