Skip to content
Snippets Groups Projects
Commit 23c3f4ff authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Restore IP to IP call

parent 85de056c
No related branches found
No related tags found
No related merge requests found
......@@ -44,8 +44,9 @@ NumberCleaner::~NumberCleaner (void)
std::string NumberCleaner::clean (std::string to_clean)
{
strip_char (" ", &to_clean);
strip_char (".", &to_clean);
// TODO Check for IP to IP call
strip_char (" ", &to_clean);
// strip_char (".", &to_clean);
strip_char ("-", &to_clean);
strip_char ("(", &to_clean);
strip_char (")", &to_clean);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment