* ignore failed xattr read

This commit is contained in:
Reinhard Pointner 2014-11-12 17:39:57 +00:00
parent dc9f6f5d12
commit 8ba347f4f7
1 changed files with 9 additions and 5 deletions

View File

@ -405,10 +405,14 @@ public class MediaBindingBean {
} }
// try CRC32 xattr (as stored by verify script) // try CRC32 xattr (as stored by verify script)
MetaAttributeView xattr = new MetaAttributeView(inferredMediaFile); try {
checksum = xattr.get("CRC32"); MetaAttributeView xattr = new MetaAttributeView(inferredMediaFile);
if (checksum != null) { checksum = xattr.get("CRC32");
return checksum; if (checksum != null) {
return checksum;
}
} catch (Exception e) {
// ignore if xattr metadata is not supported for the given file
} }
// calculate checksum from file // calculate checksum from file
@ -962,7 +966,7 @@ public class MediaBindingBean {
private String getOriginalFileName(File file) { private String getOriginalFileName(File file) {
try { try {
return new MetaAttributes(file).getOriginalName(); return new MetaAttributes(file).getOriginalName();
} catch (Throwable e) { } catch (Exception e) {
return null; return null;
} }
} }