Skip to content
Snippets Groups Projects
Commit 3f6ebaaa authored by Alexandre Lision's avatar Alexandre Lision
Browse files

osx: fix compilation

return type of outgoingCall() has changed from bool
to std::string

Refs #67104

Change-Id: Idbd1f9419596d99a0f6eb8a430a4a9b4820e870e
parent 25c38a79
No related branches found
No related tags found
No related merge requests found
......@@ -411,11 +411,11 @@ ManagerImpl::outgoingCall(const std::string& preferred_account_id,
call = newOutgoingCall(to_cleaned, preferred_account_id);
} catch (const std::exception &e) {
RING_ERR("%s", e.what());
return false;
return {};
}
if (not call)
return false;
return {};
switchCall(call);
call->setConfId(conf_id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment