Collect more data from TheTVDB search queries (to maybe present better options to the user, including years and banners)

This commit is contained in:
Reinhard Pointner 2019-04-28 17:44:46 +07:00
parent 7d4e34ec47
commit 36236c1363
1 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,8 @@
package net.filebot.web;
public class TheTVDBSearchResult extends SearchResult {
import java.io.Serializable;
public class TheTVDBSearchResult extends SearchResult implements Serializable {
protected String slug;
protected SimpleDate firstAired;
@ -37,4 +39,9 @@ public class TheTVDBSearchResult extends SearchResult {
return status;
}
@Override
public SearchResult clone() {
return new TheTVDBSearchResult(id, name, aliasNames, slug, firstAired, overview, network, status);
}
}