mirror of https://github.com/readrops/Readrops.git
Improve atom link matching
This commit is contained in:
parent
7dcdcb68fb
commit
2211017472
|
@ -90,19 +90,11 @@ public class ATOMEntry extends AItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getUrl() {
|
public String getUrl() {
|
||||||
if (links.size() > 0) {
|
for (ATOMLink link : links) {
|
||||||
if (links.get(0).getRel() == null)
|
if (link.getRel() == null || link.getRel().equals("self") || link.getRel().equals("alternate"))
|
||||||
return links.get(0).getHref();
|
return link.getHref();
|
||||||
else {
|
}
|
||||||
if (links.size() > 1) {
|
|
||||||
if (links.get(1).getRel() == null)
|
return null;
|
||||||
return links.get(1).getHref();
|
|
||||||
else
|
|
||||||
return null;
|
|
||||||
} else
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue