Fix {{CardFlags}} not working with flags 5-7

https://forums.ankiweb.net/t/please-activate-flags-5-7-on-the-cardflag/22143
This commit is contained in:
Damien Elmes 2022-08-08 10:55:21 +10:00
parent 4ea370959b
commit bd2f866c68

View file

@ -161,14 +161,8 @@ impl Collection {
} }
} }
fn flag_name(n: u8) -> &'static str { fn flag_name(n: u8) -> String {
match n { format!("flag{n}")
1 => "flag1",
2 => "flag2",
3 => "flag3",
4 => "flag4",
_ => "",
}
} }
fn fill_empty_fields(note: &mut Note, qfmt: &str, nt: &Notetype, tr: &I18n) { fn fill_empty_fields(note: &mut Note, qfmt: &str, nt: &Notetype, tr: &I18n) {