diff --git a/hotel_channel_connector_wubook/models/hotel_reservation/importer.py b/hotel_channel_connector_wubook/models/hotel_reservation/importer.py index 1f6b48ef6..e507f62bb 100644 --- a/hotel_channel_connector_wubook/models/hotel_reservation/importer.py +++ b/hotel_channel_connector_wubook/models/hotel_reservation/importer.py @@ -148,7 +148,7 @@ class HotelReservationImporter(Component): # Parse 'ancyllary' info if 'ancillary' in broom: if 'guests' in broom['ancillary']: - persons = broom['ancillary']['guests'] + persons = min(broom['ancillary']['guests'], persons) if 'tax_inclusive' in broom['ancillary'] and not broom['ancillary']['tax_inclusive']: _logger.info("--- Incoming Reservation without taxes included!") tax_inclusive = False