summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cb8a1ba..e515a9a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -481,15 +481,17 @@ fn get_bytes( path: &Path, usage_flag : bool ) -> u64 {
fn color_from_path<'a>( path : &Path, color_dict : &'a HashMap<String, String> ) -> Option<&'a str> {
if try_is_symlink( path ) {
- if path.read_link().unwrap().exists() {
- if let Some( col ) = color_dict.get( &"ln".to_string() ) {
- return Some( &col );
- }
- } else {
- if let Some( col ) = color_dict.get( &"or".to_string() ) {
- return Some( &col );
+ let path_link = path.read_link();
+ if path_link.is_ok() {
+ if path_link.unwrap().exists() {
+ if let Some(col) = color_dict.get(&"ln".to_string()) {
+ return Some(&col);
+ }
}
}
+ if let Some( col ) = color_dict.get( &"or".to_string() ) {
+ return Some( &col );
+ }
}
let metadata = path.symlink_metadata();
if metadata.is_ok() {