diff --git a/src/structures/channel.ts b/src/structures/channel.ts index d9e81b357..709971fe8 100644 --- a/src/structures/channel.ts +++ b/src/structures/channel.ts @@ -115,7 +115,7 @@ export async function createDiscordenoChannel( `Running forEach loop in createDiscordenoChannel function.`, ); - if (key === "guildId") value = guildId || data.guildId || ""; + if (key === "guildId") value = guildId?.toString() || data.guildId || ""; props[key] = createNewProp( CHANNEL_SNOWFLAKES.includes(key)