Skip to content

Commit

Permalink
🐛 Fix bug var
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienBounoir committed Mar 28, 2023
1 parent f046273 commit d5b080e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ const client = new tmi.Client({
client.on('message', (channel, tags, message, self) => {
if (self) return; // ignore les messages envoyés par le bot lui-même

let channel = channel.replace("#", "")
console.log(`${tags.username}: ${message}`)

channel = channel.replace("#", "")
if (filteredBot.includes(tags.username) || (tags.username == channel)) return; // ignore les messages envoyés par les bots filtrés
fs.appendFileSync(`./tchat/${channel}.txt`, `${message}\n`); // enregistrement du message dans un fichier
fs.appendFileSync(`./user/${channel}.txt`, `${tags.username}\n`); // enregistrement du nom d'utilisateur dans un fichier
Expand Down

0 comments on commit d5b080e

Please sign in to comment.