Nimit Savant

Results 38 comments of Nimit Savant

Yellow, I would like to volunteer if the port scanner community still needs help :D I'll try to be active on issues and PR's.

@sakshampruthi please look into this PR, it solves #49 and I think it would be a great addition to the project!

Can someone guide me through this issue I've written test cases before in jest? For what exactly we've to write an integration test for?

Is this issue solved or we still discussing this?

Hey @MattIPv4, from what I understood in this issue, in the child category the `new and old channel` gives the same out when called for permissionsLocked. Also, what is `permissionOverwrites.some`?

Do you think it is possible that the child is updated first and then the parent channel, which could be a possible reason why this is happening? I'm testing trying...

I'm trying to run your code and getting this error `TypeError: newChannel.permissionOverwrites.some is not a function` Node: 14.6.0

From what I understood and debugged only we can see channel category being updated for `new and old channel`. So we need to handle the events in such a way...

Hey @MattIPv4 so I tried this: ```js client.on('channelUpdate', (oldChannel, newChannel) => { console.log(newChannel.type); if (newChannel.type === 'GUILD_CATEGORY') { console.log('Category permissions updated'); return; } if (newChannel.type === 'GUILD_TEXT') { console.log('Text channel...

> > > Yeah, that looks like it also demonstrates the issue here -- `permissionsLocked` is incorrectly reported as `false` for the children updates, because the category has already been...