diff --git a/net/web/public/index.html b/net/web/public/index.html index 47f4129c..7ef9d664 100644 --- a/net/web/public/index.html +++ b/net/web/public/index.html @@ -3,7 +3,7 @@
- + { let contacts = []; - if (chan.guid != null && profile.state.profile.guid != chan.guid) { + if (chan.guid != null && profile.state.profile.guid !== chan.guid) { contacts.push(card.actions.getCardByGuid(chan.guid)); } for (let guid of chan.data.channelDetail?.members) { - if (guid != profile.state.profile.guid) { + if (guid !== profile.state.profile.guid) { contacts.push(card.actions.getCardByGuid(guid)); } }