mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-15 03:15:01 -05:00
Fix unclickable nick in NICK message
This commit is contained in:
parent
c05af5bb6d
commit
7a1d9c48cc
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ function LogLine(props) {
|
|||
case "NICK":
|
||||
var newNick = msg.params[0];
|
||||
content = html`
|
||||
${createNick(msg.prefix.name)} is now known as <${Nick} nick=${newNick}/>
|
||||
${createNick(msg.prefix.name)} is now known as ${createNick(newNick)}
|
||||
`;
|
||||
break;
|
||||
case "TOPIC":
|
||||
|
|
Loading…
Reference in a new issue