Fix missing pupils in default price tags

This commit is contained in:
Malte Tammena 2021-10-24 22:30:14 +02:00
parent b2c8f3b894
commit ca84c76172

View file

@ -162,7 +162,7 @@ impl Prices {
let price_tags = CONF.price_tags();
let price_tags = if price_tags.is_empty() {
// Print all of them
vec![self.students, self.employees, self.others]
vec![self.students, self.employees, self.pupils, self.others]
} else {
let mut values = vec![];
if price_tags.contains(&PriceTags::Student) {