forked from organicmaps/organicmaps
[iOS] don't apply "from" and "to" filters to hotels while offline
This commit is contained in:
parent
0d661d3deb
commit
260d119a03
1 changed files with 5 additions and 2 deletions
|
@ -331,8 +331,11 @@ void configButton(UIButton * button, NSString * primaryText, NSString * secondar
|
|||
using Clock = booking::AvailabilityParams::Clock;
|
||||
booking::AvailabilityParams params;
|
||||
params.m_rooms = {{kAdultsCount, kAgeOfChild}};
|
||||
params.m_checkin = Clock::from_time_t(self.checkInDate.timeIntervalSince1970);
|
||||
params.m_checkout = Clock::from_time_t(self.checkOutDate.timeIntervalSince1970);
|
||||
if (Platform::IsConnected())
|
||||
{
|
||||
params.m_checkin = Clock::from_time_t(self.checkInDate.timeIntervalSince1970);
|
||||
params.m_checkout = Clock::from_time_t(self.checkOutDate.timeIntervalSince1970);
|
||||
}
|
||||
return { make_shared<booking::AvailabilityParams>(params), {} };
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue