Update for changes in irc-framework

This commit is contained in:
Pavel Djundik 2018-06-20 18:30:32 +03:00
parent 5827b151ee
commit a9413dc277
2 changed files with 4 additions and 4 deletions

View file

@ -6,11 +6,11 @@
{{/if}} {{/if}}
<dt>Host mask:</dt> <dt>Host mask:</dt>
<dd class="hostmask">{{whois.user}}@{{whois.host}}</dd> <dd class="hostmask">{{whois.ident}}@{{whois.hostname}}</dd>
{{#if whois.actualhost}} {{#if whois.actual_hostname}}
<dt>Actual host:</dt> <dt>Actual host:</dt>
<dd class="hostmask"><a href="https://ipinfo.io/{{whois.actualip}}" target="_blank" rel="noopener">{{whois.actualip}}</a>{{#notEqual whois.actualhost whois.actualip}} ({{whois.actualhost}}){{/notEqual}}</dd> <dd class="hostmask"><a href="https://ipinfo.io/{{whois.actual_ip}}" target="_blank" rel="noopener">{{whois.actual_ip}}</a>{{#notEqual whois.actual_hostname whois.actual_ip}} ({{whois.actual_hostname}}){{/notEqual}}</dd>
{{/if}} {{/if}}
{{#if whois.real_name}} {{#if whois.real_name}}

View file

@ -19,7 +19,7 @@ module.exports = function(irc, network) {
time: data.time, time: data.time,
type: Msg.Type.CHGHOST, type: Msg.Type.CHGHOST,
new_ident: data.ident !== data.new_ident ? data.new_ident : "", new_ident: data.ident !== data.new_ident ? data.new_ident : "",
new_host: data.hostname !== data.new_host ? data.new_host : "", new_host: data.hostname !== data.new_hostname ? data.new_hostname : "",
self: data.nick === irc.user.nick, self: data.nick === irc.user.nick,
from: user, from: user,
}); });