Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3acff18b authored by jonerlin's avatar jonerlin Committed by android-build-merger
Browse files

Merge "HFP: support pause character "Comma" in acceptable dial digit string"

am: aeb98608

Change-Id: I28a7fe3aff8da888aa26b89047babd7d6047ec35
parents 59b914ec aeb98608
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -242,7 +242,8 @@ bool utl_isintstr(const char* p_s) {
 ******************************************************************************/
bool utl_isdialchar(const char d) {
  return (((d >= '0') && (d <= '9')) || (d == '*') || (d == '+') ||
          (d == '#') || (d == ';') || ((d >= 'A') && (d <= 'C')) ||
          (d == '#') || (d == ';') || (d == ',') ||
          ((d >= 'A') && (d <= 'C')) ||
          ((d == 'p') || (d == 'P') || (d == 'w') || (d == 'W')));
}