Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2023-03-04 11:12:28 +00:00
commit 86a8ec27f3
1 changed files with 2 additions and 5 deletions

View File

@ -87,11 +87,8 @@ exports.ping = async (hostname, size = 56) => {
return await exports.pingAsync(hostname, false, size); return await exports.pingAsync(hostname, false, size);
} catch (e) { } catch (e) {
// If the host cannot be resolved, try again with ipv6 // If the host cannot be resolved, try again with ipv6
if (e.message.includes("service not known")) { // As node-ping does not report a specific error for this, try again with ipv6 no matter what.
return await exports.pingAsync(hostname, true, size); return await exports.pingAsync(hostname, true, size);
} else {
throw e;
}
} }
}; };