Related to #2043.
When using the database for dialogs, the `caller_contact` and `callee_contact` columns are
too short.
The following seems to help.
```
ALTER TABLE kamailio.dialog ALTER COLUMN caller_contact TYPE varchar(255);
ALTER TABLE kamailio.dialog ALTER COLUMN callee_contact TYPE varchar(255);
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2053