mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-12 13:46:51 +00:00
fix: parsing item name
This commit is contained in:
parent
8dcbd9679e
commit
cf7e1d4cb6
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ func ParseBooking(content string) (*Booking, error) {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
itemName, err := extractString(`Maison . Chambres.\((T2|T3) -`, content)
|
itemName, err := extractString(`Maison . Chambre(s?) \((T2|T3)`, content)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue