Introduce "Absolute Airdate Order" to improve support for "Match by Airdate Number (e.g. 20161231)" and "Match by Episode Title" kind of use case
This commit is contained in:
parent
a513cf556a
commit
21d562eadd
|
@ -39,12 +39,9 @@ public class TheTVDBClientV1 extends AbstractEpisodeListProvider implements Artw
|
||||||
|
|
||||||
private static final Map<MirrorType, String> mirrors = MirrorType.newMap();
|
private static final Map<MirrorType, String> mirrors = MirrorType.newMap();
|
||||||
|
|
||||||
private final String apikey;
|
private String apikey;
|
||||||
|
|
||||||
public TheTVDBClientV1(String apikey) {
|
public TheTVDBClientV1(String apikey) {
|
||||||
if (apikey == null)
|
|
||||||
throw new NullPointerException("apikey must not be null");
|
|
||||||
|
|
||||||
this.apikey = apikey;
|
this.apikey = apikey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue