push
Some checks failed
CI/CD Pipeline / test (push) Failing after 1m41s

This commit is contained in:
philipp 2024-02-17 20:50:11 +01:00
parent d3db84c444
commit 0da0256efa

View File

@ -49,7 +49,7 @@ impl Liste {
if let Some(last) = last_ebene {
if liste.ebene > last {
let last_list = content.pop().unwrap();
content.push(Content::List(vec![last_list, liste.get_content()]));
content.push(Content::Multi(vec![last_list, liste.get_content()]));
already_added = true;
}
}