Skip to content

Commit

Permalink
Fix expected signature from Connman Scan method
Browse files Browse the repository at this point in the history
Resulted in errors on app startup:
 Unexpected reply signature: got \"\", expected \"a{sv}\"

Connman technology interface documents Scan as void, results
gotten with other api.

Change-Id: I6f2961685af7e1ef0559e1b6d89245231404899c
Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
  • Loading branch information
pvuorela authored and lpotter committed Feb 20, 2018
1 parent 00f693d commit 3548af3
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 @@ -506,7 +506,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 3548af3

Please sign in to comment.