[search] Check that POI is closed only if we have working time variable.

This commit is contained in:
vng 2015-08-26 15:08:56 +03:00 committed by Alex Zolotarev
parent 180c3af540
commit 07712f58e4

View file

@ -155,8 +155,9 @@ void PreResult2::ProcessMetadata(feature::Metadata const & meta)
#ifndef OMIM_OS_LINUX
// Lib opening_hours is not built for Linux since stdlib doesn't have required functions.
m_metadata.m_isClosed =
OSMTimeRange(meta.Get(feature::Metadata::FMD_OPEN_HOURS))(time(nullptr)).IsClosed();
string const openHours = meta.Get(feature::Metadata::FMD_OPEN_HOURS);
if (!openHours.empty())
m_metadata.m_isClosed = OSMTimeRange(openHours)(time(nullptr)).IsClosed();
#endif
m_metadata.m_stars = 0;