fix: parse interface names in IPv6 routing tables

This commit is contained in:
☸️ 2021-09-21 05:08:01 +10:00 committed by GitHub
commit 3bd813f545
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,6 +52,9 @@ func update() ([]Route, error) {
case "Netif":
route.Device = s
break
case "If":
route.Device = s
break
}
}