From 22d57fc827ffba461b0d48e3847954d8db2d2b3e Mon Sep 17 00:00:00 2001 From: Kimberly Walker Date: Fri, 14 Sep 2018 12:16:44 -0400 Subject: [PATCH] https://github.com/Metaswitch/project-clearwater-issues/issues/33 --- src/contact_filtering.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/contact_filtering.cpp b/src/contact_filtering.cpp index e395ef264..54c95bbe6 100644 --- a/src/contact_filtering.cpp +++ b/src/contact_filtering.cpp @@ -543,6 +543,12 @@ struct NumericRange { maximum = minimum; } + // RCC.07 v9.0 section Chatbot Feature Tags, Chatbot Application Version, Section 3.6.2.2 + // Add support for an = as part of the version designation. + else if (sscanf(str.c_str(), "#=%f", &minimum) == 1) + { + maximum = minimum; + } else { // Invalid format for numeric.