-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Call finished before hangup #7
Comments
Do you use FreePBX or have own dialplan ? To troubleshoot this I will need AMI dump. AMI dump can contain some private info, like CallerID and DID numbers. |
Thanks for your fast response! Here are the infos you need:
After the log I mentioned that follow me was active for extention 21, but there was no change to the behavior due to disabling it.... |
I will look into follow me situation soon.
Can you record new ami dump, but with follow me disabled ? UPD: looks like it picked up hangup events from local channel optimizations. UPD2: Quick fix case connect.In:
/*if _, ok := ExtContext[e["Context"]]; !ok {
return
}*/
+ if e["Context"] == "macro-dial" && (e["DestChannel"][6:11] == "FMPR-" || e["DestChannel"][6:11] == "FMGL-") {
+ return
+ }
c.TimeAnswer = time.Now()
c.ChDest = e["DestChannel"]
c.Ext = e["DestCallerIDNum"] |
For sure! Here we go: Thanks for the quick updates! Update: All updates to suiteCRM after the finishing of the call will lead to "204 No Content" |
First of all: The piece of work you did is awesome!!!
I'm using your software with asterisk 18 and AMI 7
The communication between SuiteCRM and asterlink is working, incomming and outgoing calls are beeing loged.
The problem begins with the updating of the created record. Here is the log:
Do you know how to get rid of this problem?
The text was updated successfully, but these errors were encountered: