parent
e16a111a12
commit
9f0d187efd
|
@ -554,15 +554,9 @@ public class FeedMedia extends FeedFile implements Playable {
|
||||||
public Callable<String> loadShownotes() {
|
public Callable<String> loadShownotes() {
|
||||||
return () -> {
|
return () -> {
|
||||||
if (item == null) {
|
if (item == null) {
|
||||||
item = DBReader.getFeedItem(
|
item = DBReader.getFeedItem(itemID);
|
||||||
itemID);
|
|
||||||
}
|
}
|
||||||
if (item.getContentEncoded() == null || item.getDescription() == null) {
|
return item.loadShownotes().call();
|
||||||
DBReader.loadExtraInformationOfFeedItem(
|
|
||||||
item);
|
|
||||||
|
|
||||||
}
|
|
||||||
return (item.getContentEncoded() != null) ? item.getContentEncoded() : item.getDescription();
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue