Refactor
This commit is contained in:
parent
cf8deb12ef
commit
4ff8d5430f
|
@ -53,19 +53,14 @@ 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 {
|
||||
boolean validType = SyndTypeUtils.enclosureTypeValid(type);
|
||||
if(!validType) {
|
||||
type = SyndTypeUtils.getMimeTypeFromUrl(url);
|
||||
validType = SyndTypeUtils.enclosureTypeValid(type);
|
||||
}
|
||||
|
||||
if(SyndTypeUtils.enclosureTypeValid(type)) {
|
||||
validType = true;
|
||||
}
|
||||
|
||||
boolean validUrl = !TextUtils.isEmpty(url);
|
||||
if (state.getCurrentItem() != null && state.getCurrentItem().getMedia() == null &&
|
||||
validType && validUrl) {
|
||||
long size = 0;
|
||||
|
|
Loading…
Reference in New Issue