diff --git a/indexer/feature_utils.cpp b/indexer/feature_utils.cpp index a50932c1c4..bd3ce374ea 100644 --- a/indexer/feature_utils.cpp +++ b/indexer/feature_utils.cpp @@ -521,6 +521,7 @@ constexpr char const * kWired = "wired"; constexpr char const * kTerminal = "terminal"; constexpr char const * kYes = "yes"; constexpr char const * kNo = "no"; +constexpr char const * kOnly = "only"; string DebugPrint(Internet internet) { @@ -557,6 +558,8 @@ YesNoUnknown YesNoUnknownFromString(std::string_view str) { if (str.empty()) return Unknown; + if (str.find(kOnly) != string::npos) + return Yes; if (str.find(kYes) != string::npos) return Yes; if (str.find(kNo) != string::npos)