Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
8cbadd46
Commit
8cbadd46
authored
Mar 25, 2010
by
Alexandre Savard
Browse files
[#3076] Clean error message when sending DTMF
Do not send DTMF when dialing
parent
94b371f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-common/src/managerimpl.cpp
View file @
8cbadd46
...
...
@@ -1436,7 +1436,12 @@ bool ManagerImpl::sendDtmf (const CallID& id, char code) {
bool
returnValue
=
false
;
playDtmf
(
code
);
returnValue
=
getAccountLink
(
accountid
)
->
carryingDTMFdigits
(
id
,
code
);
CallAccountMap
::
iterator
iter
=
_callAccountMap
.
find
(
id
);
// Make sure the call exist before sending DTMF, ths could be simply call dialing
if
(
iter
!=
_callAccountMap
.
end
())
returnValue
=
getAccountLink
(
accountid
)
->
carryingDTMFdigits
(
id
,
code
);
return
returnValue
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment