This commit is contained in:
Martin Fietz 2016-11-27 10:44:49 +01:00
parent cf8deb12ef
commit 4ff8d5430f
1 changed files with 7 additions and 12 deletions

View File

@ -53,20 +53,15 @@ public class NSRSS20 extends Namespace {
} else if (ENCLOSURE.equals(localName)) {
String type = attributes.getValue(ENC_TYPE);
String url = attributes.getValue(ENC_URL);
boolean validType = false;
boolean validUrl = !TextUtils.isEmpty(url);
if(SyndTypeUtils.enclosureTypeValid(type)) {
validType = true;
} else {
type = SyndTypeUtils.getMimeTypeFromUrl(url);
}
boolean validType = SyndTypeUtils.enclosureTypeValid(type);
if(!validType) {
type = SyndTypeUtils.getMimeTypeFromUrl(url);
validType = SyndTypeUtils.enclosureTypeValid(type);
}
if(SyndTypeUtils.enclosureTypeValid(type)) {
validType = true;
}
if (state.getCurrentItem() != null && state.getCurrentItem().getMedia() == null &&
boolean validUrl = !TextUtils.isEmpty(url);
if (state.getCurrentItem() != null && state.getCurrentItem().getMedia() == null &&
validType && validUrl) {
long size = 0;
try {