Linkify error messages
Sometimes servers will put links and channels in their error messages. Make it easy for users to click them.
This commit is contained in:
parent
25e69a551e
commit
c4a78283af
2 changed files with 3 additions and 2 deletions
|
@ -230,7 +230,7 @@ class LogLine extends Component {
|
|||
if (irc.isError(msg.command) && msg.command != irc.ERR_NOMOTD) {
|
||||
lineClass = "error";
|
||||
}
|
||||
content = html`${msg.command} ${msg.params.join(" ")}`;
|
||||
content = html`${msg.command} ${linkify(msg.params.join(" "))}`;
|
||||
}
|
||||
|
||||
return html`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue