mirror of
https://github.com/thelounge/thelounge
synced 2024-11-24 13:03:07 +00:00
whois: support actual_username field
Some servers (e.g. InspIRCd v4) support the concept of a real username, i.e. the username that was originally sent as distinct from their virtual username set by services. Closes: https://github.com/thelounge/thelounge/issues/4900
This commit is contained in:
parent
a61bc14456
commit
e42ad91e04
1 changed files with 5 additions and 0 deletions
|
@ -34,6 +34,11 @@
|
|||
</dd>
|
||||
</template>
|
||||
|
||||
<template v-if="message.whois.actual_username">
|
||||
<dt>Actual username:</dt>
|
||||
<dd>{{ message.whois.actual_username }}</dd>
|
||||
</template>
|
||||
|
||||
<template v-if="message.whois.real_name">
|
||||
<dt>Real name:</dt>
|
||||
<dd><ParsedMessage :network="network" :text="message.whois.real_name" /></dd>
|
||||
|
|
Loading…
Reference in a new issue