Fixing a panic when showing conflict messages around conflict markers
Dependencies
- [2]
ZFSIT55USolving a conflict - [3]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting).
Change contents
- replacement in libpijul/src/vertex_buffer.rs at line 215
Ok(header) => header.message.lines().next().unwrap().to_string(),Ok(header) => if let Some(l) = header.message.lines().next() {l.to_string()} else {String::new()},