Fix: Typo in field assignment.

This commit is contained in:
baldo 2021-02-22 22:35:40 +01:00
parent 15e86eecd5
commit ada5d99128

View file

@ -289,7 +289,7 @@ async function parseNodeFile(file: string): Promise<{node: Node, nodeSecrets: No
email: node.email as string || '', email: node.email as string || '',
hostname: node.hostname as string || '', hostname: node.hostname as string || '',
coords: node.coords as string || undefined, coords: node.coords as string || undefined,
key: node.coords as FastdKey || undefined, key: node.key as FastdKey || undefined,
mac: node.mac as string || '', mac: node.mac as string || '',
monitoring: !!node.monitoring, monitoring: !!node.monitoring,
monitoringConfirmed: !!node.monitoringConfirmed, monitoringConfirmed: !!node.monitoringConfirmed,