1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-22 07:48:52 -05:00

Add XEM origin

This commit is contained in:
Reinhard Pointner 2019-06-05 13:12:25 +07:00
parent b02128b2bd
commit 5fd53daabb

View File

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