Skip to content

Commit

Permalink
Merge branch 'jb39853' into 'mer-5.6'
Browse files Browse the repository at this point in the history
[mer][qtnetwork] Treat missing connmanManager as completed update. Contributes to JB#39853

See merge request !27
  • Loading branch information
rainemak committed Sep 26, 2017
2 parents 9a602a1 + 4ee5aab commit 33f6b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/bearer/connman/qconnmanengine.cpp
Expand Up @@ -217,7 +217,7 @@ void QConnmanEngine::requestUpdate()

void QConnmanEngine::doRequestUpdate()
{
if (connmanManager && connmanManager->requestScan("wifi"))
if (!connmanManager || !connmanManager->requestScan("wifi"))
Q_EMIT updateCompleted();
}

Expand Down

0 comments on commit 33f6b24

Please sign in to comment.