Show custom title on download log page

This commit is contained in:
ByteHamster 2019-11-20 20:41:11 +01:00
parent a6e4c4756c
commit 6c43263446
1 changed files with 3 additions and 1 deletions

View File

@ -260,7 +260,9 @@ public class Feed extends FeedFile implements ImageResource {
@Override
public String getHumanReadableIdentifier() {
if (feedTitle != null) {
if (!TextUtils.isEmpty(customTitle)) {
return customTitle;
} else if (!TextUtils.isEmpty(feedTitle)) {
return feedTitle;
} else {
return download_url;