1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-21 23:38:50 -05:00

AnimeList doesn't support {absolute} mapping, so it makes sense to inherit whatever we've got from the original TheTVDB object

This commit is contained in:
Reinhard Pointner 2019-06-13 20:59:36 +07:00
parent 49b6a822ba
commit bd79bbf5bf

View File

@ -51,7 +51,7 @@ public class MappedEpisode extends Episode {
@Override
public Integer getAbsolute() {
return mapping.getAbsolute(); // always use mapped absolute number
return getFirst(Episode::getAbsolute);
}
@Override