Skip to content

Commit dcd1c3d

Browse files
committed
fixed followage command
1 parent 99ecb9c commit dcd1c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/followage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ const fetch = require('node-fetch');
33
module.exports = (client, channel, user, streamer) => {
44
return fetch(`https://api.2g.be/twitch/followage/${streamer}/${user.username}?format=mwdhms`)
55
.then(res => res.text())
6-
.then(text => client.say(channel, `@${user.username} está seguindo a ${text}`))
6+
.then(text => client.say(channel, text))
77
.catch(() => client.say(channel, 'algo de errado não está certo, não consigo ver a quanto tempo vc segue...'));
88
}

0 commit comments

Comments
 (0)