Skip to content

Commit 4192f17

Browse files
committed
aligned assessments in ddns_resolver.js
1 parent f736815 commit 4192f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/lib/ddns_resolver/ddns_resolver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const ddnsResolver = {
5151
return utils.execSafe('getent', ['ahostsv4', host])
5252
.then((result) => {
5353
const ipv4Regex = /(\d{1,3}\.){3}\d{1,3}/;
54-
const match = result.match(ipv4Regex);
54+
const match = result.match(ipv4Regex);
5555

5656
if (!match) {
5757
logger.error(`IPV4 lookup for ${host} returned invalid output: ${result}`);

0 commit comments

Comments
 (0)