We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99ecb9c commit dcd1c3dCopy full SHA for dcd1c3d
src/commands/followage.js
@@ -3,6 +3,6 @@ const fetch = require('node-fetch');
3
module.exports = (client, channel, user, streamer) => {
4
return fetch(`https://api.2g.be/twitch/followage/${streamer}/${user.username}?format=mwdhms`)
5
.then(res => res.text())
6
- .then(text => client.say(channel, `@${user.username} está seguindo a ${text}`))
+ .then(text => client.say(channel, text))
7
.catch(() => client.say(channel, 'algo de errado não está certo, não consigo ver a quanto tempo vc segue...'));
8
}
0 commit comments