bot keeps spamming every 4 second

so my bot when i run it it runs pretty much fine but what i hate is that it keeps spamming every 4 seconds a voice update of the user, i want it to stop spamming, i also tried to use @discordjs/voice instead of quick.db it does not spam though like it does with quick.db but the function where the bot goes into the channels does not work and does not make any movmements only it makes with quick.db however what i want is only to stop making it spamming because its taking full cache of disk for absolute nothing. i tried this with the ready function i have`

const { Client } = require('discord.js');
const { activity } = require('../../config/bot.json');
const { status } = require('../../config/bot.json');
const { joinVoiceChannel } = require('@discordjs/voice');

/**
 * 
 * @param {Client} client 
 */

async function ReadyFunction(client, red, blue) {
    console.log(blue('Connected in to: ') + red(client.user.username));
    await client.user.setActivity(activity.name, {
        type: activity.type
    });
    await client.user.setStatus(status);

    setInterval(() => {
        try {
            client.guilds.cache.forEach(guild => {
                let channelID = require('discordjs/voice').fetch(`Voice_Channel_${guild.id}`)
                if (channelID !== null) {
                    let channel = client.channels.cache.find(c => c.id == '941600059093553175');
                    const connection = joinVoiceChannel({
                        channelId: channel.id,
                        guildId: channel.guild.id,
                        adapterCreator: channel.guild.voiceAdapterCreator,
                    });
                    connection;
                    connection.on("error", err => {
                        return
                    });
                }
            });
        }  catch {
            
        }
    }, 9000);
};


module.exports.get = ReadyFunction;

with this it keeps spamming every 4 second without any stop when i use quick.db as the quild fecher for cache


 const { Client } = require('discord.js');
const { activity } = require('../../config/bot.json');
const { status } = require('../../config/bot.json');
const { joinVoiceChannel } = require('@discordjs/voice');

/**
 * 
 * @param {Client} client 
 */

async function ReadyFunction(client, red, blue) {
    console.log(blue('Connected in to: ') + red(client.user.username));
    await client.user.setActivity(activity.name, {
        type: activity.type
    });
    await client.user.setStatus(status);

    setInterval(() => {
        try {
            client.guilds.cache.forEach(guild => {
                let channelID = require('quick.db').fetch(`Voice_Channel_${guild.id}`)
                if (channelID !== null) {
                    let channel = client.channels.cache.find(c => c.id == '941600059093553175');
                    const connection = joinVoiceChannel({
                        channelId: channel.id,
                        guildId: channel.guild.id,
                        adapterCreator: channel.guild.voiceAdapterCreator,
                    });
                    connection;
                    connection.on("error", err => {
                        return
                    });
                }
            });
        }  catch {
            
        }
    }, 9000);
};

module.exports.get = ReadyFunction;

`please i want someone to make it stops spamming