Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[qtcontacts-sqlite] Allow , and . as DTMF pause. Contributes to: JB#4…
…4709
  • Loading branch information
inzanity committed Feb 25, 2019
1 parent 56a2909 commit 589dfd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extensions/qtcontacts-extensions_impl.h
Expand Up @@ -39,8 +39,8 @@ namespace {
QString normalize(const QString &input, int flags, int maxCharacters)
{
// Allow '[' and ']' even though RFC3966 doesn't
static const QString allowedSeparators(QString::fromLatin1(" .-()[]"));
static const QString dtmfChars(QString::fromLatin1("pPwWxX#*"));
static const QString allowedSeparators(QString::fromLatin1(" -()[]"));
static const QString dtmfChars(QString::fromLatin1("pP,.wWxX#*"));
static const QString sipScheme(QString::fromLatin1("sips:"));
static const QString hashControl(QString::fromLatin1("#31#"));
static const QString starControl(QString::fromLatin1("*31#"));
Expand Down

0 comments on commit 589dfd9

Please sign in to comment.