Fix Changelog::parse when multiple # present in entry

This commit is contained in:
Héctor Ramón Jiménez 2024-09-18 02:24:22 +02:00
parent ddcf9262f5
commit b3a365f9ca
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -71,7 +71,7 @@ impl Changelog {
};
for entry in rest.lines() {
let Some((_, id)) = entry.split_once('#') else {
let Some((_, id)) = entry.split_once("[#") else {
continue;
};