forked from organicmaps/organicmaps-tmp
Set gourd on rules with extended hours so they always
evaluate to not closed.
This commit is contained in:
parent
91eb207734
commit
8ee2281e51
1 changed files with 10 additions and 0 deletions
|
@ -116,6 +116,16 @@ bool IsActive(Timespan const & span, std::tm const & time)
|
|||
if (!ToHourMinutes(time, toBeChecked))
|
||||
return false;
|
||||
|
||||
// TODO(mgsergio): We don't handle extended hours yet.
|
||||
// Extended hours handling could be implemented through
|
||||
// splitting rule with extended hours into separated rules.
|
||||
if (end <= start || end > THourMinutes{24,00})
|
||||
// It's better to say we are open, cause
|
||||
// in search result page only `closed' lables are shown.
|
||||
// So from user's perspective `unknown' and `open'
|
||||
// mean same as `not closed'.
|
||||
return true;
|
||||
|
||||
return start <= toBeChecked && toBeChecked <= end;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue