We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d509ec commit 3328026Copy full SHA for 3328026
src/from_value.rs
@@ -62,7 +62,7 @@ macro_rules! int_from_value {
62
$(
63
impl FromValue for $t {
64
fn from_value(value: Result<dynamic::ValueAccessor>) -> InputValueResult<Self> {
65
- Self::try_from(value?.u64()?).map_err(|_| {
+ Self::try_from(value?.i64()?).map_err(|_| {
66
InputValueError::custom(format!(
67
"Only integers from {} to {} are accepted for {}.",
68
Self::MIN,
0 commit comments