Add XEM origin

This commit is contained in:
Reinhard Pointner 2019-06-05 13:12:25 +07:00
parent b02128b2bd
commit 5fd53daabb
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,7 @@ import net.filebot.Resource;
public enum XEM {
AniDB, TheTVDB;
AniDB, TheTVDB, Scene;
public String getOriginName() {
switch (this) {
@ -32,6 +32,8 @@ public enum XEM {
return "anidb";
case TheTVDB:
return "tvdb";
case Scene:
return "scene";
}
return null;
}