Fix: imag-log should report touched entries

This commit is contained in:
Matthias Beyer 2019-08-25 11:59:37 +02:00
parent e21d4db543
commit b3eb37dde8

View file

@ -110,7 +110,9 @@ fn main() {
.map(|mut fle| {
let _ = fle.make_log_entry().map_err_trace_exit_unwrap();
*fle.get_content_mut() = text;
fle
})
.map(|fle| rt.report_touched(fle.get_location()).unwrap_or_exit())
.map_err_trace_exit_unwrap();
}
}