Skip to content

Commit

Permalink
ipv6 method 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 200dabd commit f959abe
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 @@ -1073,7 +1073,7 @@ impl PropMapConvert for IPV6Settings {
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 f959abe

Please sign in to comment.