Merge pull request #1929 from ianmacd/pr1

Display the service node's IP address after its country.
pull/1938/head
Audric Ackermann 4 years ago committed by GitHub
commit 0382d703c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,7 +69,7 @@ const OnionPathModalInner = () => {
{nodes.map((snode: Snode | any, index: number) => {
let labelText = snode.label
? snode.label
: countryLookup.byIso(ip2country(snode.ip))?.country;
: `${countryLookup.byIso(ip2country(snode.ip))?.country} [${snode.ip}]`;
if (!labelText) {
labelText = window.i18n('unknownCountry');
}

Loading…
Cancel
Save