We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f736815 commit 4192f17Copy full SHA for 4192f17
backend/lib/ddns_resolver/ddns_resolver.js
@@ -51,7 +51,7 @@ const ddnsResolver = {
51
return utils.execSafe('getent', ['ahostsv4', host])
52
.then((result) => {
53
const ipv4Regex = /(\d{1,3}\.){3}\d{1,3}/;
54
- const match = result.match(ipv4Regex);
+ const match = result.match(ipv4Regex);
55
56
if (!match) {
57
logger.error(`IPV4 lookup for ${host} returned invalid output: ${result}`);
0 commit comments