mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-26 01:38:57 -05:00
* quietly ignore if xattr can't be read for some reason, outdated jre, not supported by fs, etc
This commit is contained in:
parent
35e1ee4735
commit
cb8cf19703
@ -248,7 +248,7 @@ public class MediaDetection {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Throwable e) {
|
} 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
|
// can't read meta attributes => ignore
|
||||||
}
|
}
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
Logger.getLogger(MediaDetection.class.getClass().getName()).warning("Failed to read xattr: " + e.getMessage());
|
// ignore
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user