fix: parsing item name

This commit is contained in:
Ruidy 2025-01-07 22:28:57 +01:00
parent 8dcbd9679e
commit cf7e1d4cb6
No known key found for this signature in database
GPG key ID: E00F51288CB857CC

View file

@ -66,7 +66,7 @@ func ParseBooking(content string) (*Booking, error) {
return nil, err
}
itemName, err := extractString(`Maison . Chambres.\((T2|T3) -`, content)
itemName, err := extractString(`Maison . Chambre(s?) \((T2|T3)`, content)
if err != nil {
return nil, err
}