summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libhb/param.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/param.c b/libhb/param.c
index 98b7fbc23..9263351d2 100644
--- a/libhb/param.c
+++ b/libhb/param.c
@@ -312,7 +312,7 @@ int hb_validate_filter_settings(int filter_id, const char *filter_param)
return 0;
// Regex matches "number" followed by one or more ":number", where number is uint or ufloat
- const char *hb_colon_separated_params_regex = "^((([0-9]+([.][0-9]+)?)|([.][0-9]+))((:(([0-9]+([.][0-9]+)?)|([.][0-9]+)))+)?)$";
+ const char *hb_colon_separated_params_regex = "^((([0-9]+([.,][0-9]+)?)|([.,][0-9]+))((:(([0-9]+([,.][0-9]+)?)|([,.][0-9]+)))+)?)$";
const char *regex_pattern = NULL;