Fix panic when starting helix tutor (#11352)

Closes #11351

Also fixed some minor issues related to log
message contents, and removed unnecessary use
of `.as_mut()` as per code review comments on
the PR.
pull/11358/head
dnaq 4 months ago committed by GitHub
parent fade4b218c
commit f5950196d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1080,7 +1080,8 @@ impl Document {
}
pub fn pickup_last_saved_time(&mut self) {
self.last_saved_time = match self.path.as_mut().unwrap().metadata() {
self.last_saved_time = match self.path().as_mut() {
Some(path) => match path.metadata() {
Ok(metadata) => match metadata.modified() {
Ok(mtime) => mtime,
Err(_) => {
@ -1096,6 +1097,8 @@ impl Document {
);
SystemTime::now()
}
},
None => SystemTime::now(),
};
}

Loading…
Cancel
Save