diff --git a/web/index.html b/web/index.html
index fd51ecb..8ddc98c 100644
--- a/web/index.html
+++ b/web/index.html
@@ -113,7 +113,11 @@
What does it mean if I get an error?
}
}
if (!foundAddr) {
- outText += "❌ Could not find the given multiaddr in the dht. Instead found: " + Object.keys(respObj.PeerFoundInDHT) + "\n"
+ outText += "❌ Could not find the given multiaddr in the dht. Instead found:\n"
+ for (const key in respObj.PeerFoundInDHT) {
+ outText += "\t" + key + "\n"
+
+ }
}
if (respObj.CidInDHT === true) {
outText += "✔ Found multihash adverised in the dht\n"