1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* set timestamp before xattr since timestamp should work even if xattr later throws an exception

This commit is contained in:
Reinhard Pointner 2013-07-09 15:42:32 +00:00
parent 1027aac904
commit 83f0dbe0dd

View File

@ -1003,16 +1003,6 @@ public class MediaDetection {
if ((model instanceof Episode || model instanceof Movie) && file.exists()) {
MetaAttributes xattr = new MetaAttributes(file);
// store original name and model as xattr
try {
if (xattr.getOriginalName() == null) {
xattr.setOriginalName(file.getName());
}
xattr.setObject(model);
} catch (Exception e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to set xattr: " + e.getMessage());
}
// set creation date to episode / movie release date
try {
if (model instanceof Episode) {
@ -1029,6 +1019,17 @@ public class MediaDetection {
} catch (Exception e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to set creation date: " + e.getMessage());
}
// store original name and model as xattr
try {
if (xattr.getOriginalName() == null) {
xattr.setOriginalName(file.getName());
}
xattr.setObject(model);
} catch (Exception e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to set xattr: " + e.getMessage());
}
}
}
}