Skip to content

Commit

Permalink
to string instead of i32
Browse files Browse the repository at this point in the history
  • Loading branch information
takotori committed Dec 11, 2023
1 parent 7c079c0 commit ed3097b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/network/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ impl PropMapConvert for IPV4Settings {
map.insert("may-fail".into(), Variant(Box::new(self.may_fail)));
map.insert(
"method".into(),
Variant(Box::new(self.method.to_i32())),
Variant(Box::new(self.method.to_string())),
);
map.insert(
"never-default".into(),
Expand Down

0 comments on commit ed3097b

Please sign in to comment.