Skip to content

Commit

Permalink
[qtbase] Fix expected signature from connman Scan method. Fixes JB#40647
Browse files Browse the repository at this point in the history
Have been getting errors on app startup:
Unexpected reply signature: got \"\", expected \"a{sv}\"

Connman technology interface documents Scan as void, results
gotten with other api.
  • Loading branch information
pvuorela committed Dec 20, 2017
1 parent efba272 commit 05fcca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/bearer/connman/qconnmanservice_linux.cpp
Expand Up @@ -500,7 +500,7 @@ void QConnmanTechnologyInterface::scan()

void QConnmanTechnologyInterface::scanReply(QDBusPendingCallWatcher *call)
{
QDBusPendingReply<QVariantMap> props_reply = *call;
QDBusPendingReply<void> props_reply = *call;
if (props_reply.isError()) {
qDebug() << props_reply.error().message();
}
Expand Down

0 comments on commit 05fcca8

Please sign in to comment.