Merge pull request #3627 from ByteHamster/show-custom-title-on-download-log-page
Show custom title on download log page
This commit is contained in:
commit
89e6556ca5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue