diff --git a/bin/domain/imag-log/src/main.rs b/bin/domain/imag-log/src/main.rs index 5c106c99..20cde518 100644 --- a/bin/domain/imag-log/src/main.rs +++ b/bin/domain/imag-log/src/main.rs @@ -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(); } }