Discord.js – Is there a way to get channel id using reactions

I’m trying to check if reaction was added in specific channel, but this don’t work. Any advice?

client.on('messageReactionAdd', (reaction, user) => {
    if(reaction.channel.id !== '799395901533588438') return console.log('wrong channel');
    console.log('right channel')
})