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

* quietly ignore if xattr can't be read for some reason, outdated jre, not supported by fs, etc

This commit is contained in:
Reinhard Pointner 2012-11-10 07:48:36 +00:00
parent 35e1ee4735
commit cb8cf19703

View File

@ -248,7 +248,7 @@ public class MediaDetection {
}
}
} catch (Throwable e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to read xattr: " + e.getMessage());
// ignore
}
}
@ -378,7 +378,7 @@ public class MediaDetection {
// can't read meta attributes => ignore
}
} catch (Throwable e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to read xattr: " + e.getMessage());
// ignore
}
}