forked from organicmaps/organicmaps
Merge pull request #5135 from rokuz/fixed-zero-rating
Fixed zero-rating hotels displaying
This commit is contained in:
commit
e84ceab228
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ string BaseApplyFeature::ExtractHotelInfo() const
|
|||
return "";
|
||||
|
||||
ostringstream out;
|
||||
if (!m_hotelData.m_rating.empty())
|
||||
if (!m_hotelData.m_rating.empty() && m_hotelData.m_rating != "0")
|
||||
{
|
||||
out << m_hotelData.m_rating << kStarSymbol;
|
||||
if (m_hotelData.m_priceCategory != 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue