[generator] Make internet_access type always present

This commit is contained in:
Ilya Zverev 2017-01-26 19:01:25 +03:00
parent afca613c57
commit b7b98f376f

View file

@ -215,6 +215,7 @@ namespace
static const uint32_t psurface = classif().GetTypeByPath({ "psurface" });
static const uint32_t wheelchair = classif().GetTypeByPath({ "wheelchair" });
static const uint32_t sponsored = classif().GetTypeByPath({ "sponsored" });
static const uint32_t internet = classif().GetTypeByPath({ "internet_access" });
// Caching type length to exclude generic [wheelchair].
uint8_t const typeLength = ftype::GetLevel(type);
@ -237,7 +238,7 @@ namespace
if (wheelchair == type && typeLength == 2)
return true;
if (sponsored == type)
if (sponsored == type || internet == type)
return true;
return false;