Minor improvements to Aerisdies folder naming
This commit is contained in:
parent
36cd9c713f
commit
ef84cb143b
@ -47,18 +47,18 @@ public class AerisdiesRipper extends AbstractHTMLRipper {
|
||||
return m.group(1);
|
||||
}
|
||||
|
||||
// @Override
|
||||
// public String getAlbumTitle(URL url) throws MalformedURLException {
|
||||
// try {
|
||||
// // Attempt to use album title as GID
|
||||
// String title = getFirstPage().select("title").first().text();
|
||||
// return getHost() + "_" + title.trim();
|
||||
// } catch (IOException e) {
|
||||
// // Fall back to default album naming convention
|
||||
// logger.info("Unable to find title at " + url);
|
||||
// }
|
||||
// return super.getAlbumTitle(url);
|
||||
// }
|
||||
@Override
|
||||
public String getAlbumTitle(URL url) throws MalformedURLException {
|
||||
try {
|
||||
// Attempt to use album title as GID
|
||||
String title = getFirstPage().select("div > div > span[id=albumname] > a").first().text();
|
||||
return getHost() + "_" + getGID(url) + "_" + title.trim();
|
||||
} catch (IOException e) {
|
||||
// Fall back to default album naming convention
|
||||
logger.info("Unable to find title at " + url);
|
||||
}
|
||||
return super.getAlbumTitle(url);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Document getFirstPage() throws IOException {
|
||||
|
Loading…
x
Reference in New Issue
Block a user