Commit d0a6fcd9 authored by Lorn Potter's avatar Lorn Potter Committed by Oswald Buddenhagen
Browse files

Fix QtBearer connman backend report correctly on lte network


Task-number: QTBUG-41813
Change-Id: I977facc2ee59571d24e60ac9d5d41e957403b344
Reviewed-by: default avatarRichard J. Moore <rich@kde.org>
parent b380bcc7
Branches
Tags
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -435,7 +435,7 @@ QNetworkConfiguration::BearerType QConnmanEngine::ofonoTechToBearerType(const QS ...@@ -435,7 +435,7 @@ QNetworkConfiguration::BearerType QConnmanEngine::ofonoTechToBearerType(const QS
} else if (currentTechnology == QLatin1String("hspa")) { } else if (currentTechnology == QLatin1String("hspa")) {
return QNetworkConfiguration::BearerHSPA; return QNetworkConfiguration::BearerHSPA;
} else if (currentTechnology == QLatin1String("lte")) { } else if (currentTechnology == QLatin1String("lte")) {
return QNetworkConfiguration::BearerWiMAX; //not exact return QNetworkConfiguration::BearerLTE;
} }
} }
return QNetworkConfiguration::BearerUnknown; return QNetworkConfiguration::BearerUnknown;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment