Fix message in rbx_session

This commit is contained in:
Lucien Greathouse
2019-01-28 13:58:24 -08:00
parent 663df7bdc2
commit 4516df5aac

View File

@@ -153,10 +153,14 @@ impl RbxSession {
// If the path doesn't exist or is a directory, we don't care if it // If the path doesn't exist or is a directory, we don't care if it
// updated // updated
match imfs.get(path) { match imfs.get(path) {
Some(ImfsItem::Directory(_)) | None => { Some(ImfsItem::Directory(_)) => {
trace!("Updated path was a directory, ignoring."); trace!("Updated path was a directory, ignoring.");
return; return;
}, },
None => {
trace!("Updated path did not exist in IMFS, ignoring.");
return;
},
Some(ImfsItem::File(_)) => {}, Some(ImfsItem::File(_)) => {},
} }
} }