Fix unclickable nick in NICK message

This commit is contained in:
Simon Ser
2020-06-25 21:28:04 +02:00
parent c05af5bb6d
commit 7a1d9c48cc
+1 -1
View File
@@ -71,7 +71,7 @@ function LogLine(props) {
case "NICK": case "NICK":
var newNick = msg.params[0]; var newNick = msg.params[0];
content = html` content = html`
${createNick(msg.prefix.name)} is now known as <${Nick} nick=${newNick}/> ${createNick(msg.prefix.name)} is now known as ${createNick(newNick)}
`; `;
break; break;
case "TOPIC": case "TOPIC":