Fix compilation error
diff --git a/src/mango_util.erl b/src/mango_util.erl
index fd572c7..0e06f66 100644
--- a/src/mango_util.erl
+++ b/src/mango_util.erl
@@ -371,7 +371,7 @@
 is_number_string(Value) when is_binary(Value) ->
     is_number_string(binary_to_list(Value));
 is_number_string(Value) when is_list(Value)->
-    case re:run(Subject, ?NUMSTRING) of
+    case re:run(Value, ?NUMSTRING) of
         nomatch ->
             false;
         _ ->