Do not perform optional try, this ate errors in the addressess and DNS input.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
@@ -19,7 +19,7 @@ extension Interface {
|
||||
throw InterfaceValidationError.invalidPrivateKey
|
||||
}
|
||||
|
||||
try? addresses?.commaSeparatedToArray().forEach { address in
|
||||
try addresses?.commaSeparatedToArray().forEach { address in
|
||||
do {
|
||||
try _ = CIDRAddress(stringRepresentation: address)
|
||||
} catch {
|
||||
@@ -27,7 +27,7 @@ extension Interface {
|
||||
}
|
||||
}
|
||||
|
||||
try? dns?.commaSeparatedToArray().forEach { address in
|
||||
try dns?.commaSeparatedToArray().forEach { address in
|
||||
do {
|
||||
try _ = Endpoint(endpointString: address)
|
||||
} catch {
|
||||
|
||||
Reference in New Issue
Block a user