Forgot to remove last apiUpdate listener
This commit is contained in:
parent
06c6a84443
commit
bf15a88c7f
@ -255,8 +255,7 @@ export default class AppGroupPermissionsTab extends SliderSuperTabEventable {
|
|||||||
//dom.lastMessageSpan.innerHTML = 'Can Add Users and Pin Messages';
|
//dom.lastMessageSpan.innerHTML = 'Can Add Users and Pin Messages';
|
||||||
};
|
};
|
||||||
|
|
||||||
this.listenerSetter.add(rootScope, 'apiUpdate', (update: Update) => {
|
this.listenerSetter.add(rootScope, 'updateChannelParticipant', (update: Update.updateChannelParticipant) => {
|
||||||
if(update._ === 'updateChannelParticipant') {
|
|
||||||
const needAdd = update.new_participant?._ === 'channelParticipantBanned' && !update.new_participant.banned_rights.pFlags.view_messages;
|
const needAdd = update.new_participant?._ === 'channelParticipantBanned' && !update.new_participant.banned_rights.pFlags.view_messages;
|
||||||
const li = list.querySelector(`[data-peer-id="${update.user_id}"]`);
|
const li = list.querySelector(`[data-peer-id="${update.user_id}"]`);
|
||||||
if(needAdd) {
|
if(needAdd) {
|
||||||
@ -280,7 +279,6 @@ export default class AppGroupPermissionsTab extends SliderSuperTabEventable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setLength();
|
setLength();
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const setLength = () => {
|
const setLength = () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user