From c16eb803879c6dd91b3cf6a2acd53cf6558b6cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bois=20Cl=C3=A9ment?= Date: Fri, 12 Apr 2019 16:53:46 +0200 Subject: [PATCH] Fix: No need to say who I am --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index bb7e5d2..914090a 100644 --- a/index.js +++ b/index.js @@ -11,7 +11,7 @@ const M = new Mastodon({ M.get('accounts/verify_credentials').then( me => M.get(`accounts/${me.data.id}/followers`).then(fol => { for (const follow of fol.data) { - M.post('statuses', { status: `@${follow.acct} ${database[Math.floor(Math.random() * database.length)]}\nRandom happiness from compliment: https://git.wadza.fr/sheychen/compliment`, visibility: 'unlisted' }) + M.post('statuses', { status: `@${follow.acct} ${database[Math.floor(Math.random() * database.length)]}`, visibility: 'unlisted' }) } }) ) \ No newline at end of file