Fix Changelog::parse when multiple # present in entry
This commit is contained in:
parent
ddcf9262f5
commit
b3a365f9ca
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue