From b107e6489aaa5589c8655ce3f43f135ffe7a820f Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Wed, 19 Nov 2025 20:25:30 +0100 Subject: [PATCH] Add uppdated ad and channel to all traceroute hops. --- src/public/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/public/index.html b/src/public/index.html index a129980..b12b6a5 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3189,6 +3189,8 @@ + `
Distance: ${distance}` + (initiatorNode ? `
Traceroute from: [${escapeString(initiatorNode.short_name)}] ${escapeString(initiatorNode.long_name)}` : '') + (targetNode ? `
Traceroute to: [${escapeString(targetNode.short_name)}] ${escapeString(targetNode.long_name)}` : '') + + (edge.updated_at ? `
Updated: ${moment(new Date(edge.updated_at)).fromNow()}` : '') + + (edge.channel_id ? `
Channel: ${edge.channel_id}` : '') + `

Terrain images from HeyWhatsThat.com` + `
`; })(); @@ -3357,6 +3359,8 @@ + `
Distance: ${distance}` + (initiatorNode ? `
Traceroute from: [${escapeString(initiatorNode.short_name)}] ${escapeString(initiatorNode.long_name)}` : '') + (targetNode ? `
Traceroute to: [${escapeString(targetNode.short_name)}] ${escapeString(targetNode.long_name)}` : '') + + (edge.updated_at ? `
Updated: ${moment(new Date(edge.updated_at)).fromNow()}` : '') + + (edge.channel_id ? `
Channel: ${edge.channel_id}` : '') + `

Terrain images from HeyWhatsThat.com` + `
`; })();