diff --git a/cmd/cli/command/app/run.go b/cmd/cli/command/app/run.go index 571c156..667fc51 100644 --- a/cmd/cli/command/app/run.go +++ b/cmd/cli/command/app/run.go @@ -367,7 +367,11 @@ func findMatchingDeviceAddress(ctx context.Context, from string, defaultAddr str continue } - return ip.String(), nil + if ip.To4() == nil { + continue + } + + return ip.To4().String(), nil } }