Switch it isuser in irc:// URLs

This is what the most recent draft [1] uses.

[1]: https://datatracker.ietf.org/doc/html/draft-butcher-irc-url-04
This commit is contained in:
Simon Ser 2021-05-25 12:42:24 +02:00
parent 07c10b3b1f
commit 9e163b7647

View File

@ -31,7 +31,7 @@ export const ReceiptType = {
}; };
export function getNickURL(nick) { export function getNickURL(nick) {
return "irc:///" + encodeURIComponent(nick) + ",isnick"; return "irc:///" + encodeURIComponent(nick) + ",isuser";
} }
export function getBufferURL(buf) { export function getBufferURL(buf) {