From 0e73f9384b147833b1d2b49ab259f4a8d429e675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bois=20Cl=C3=A9ment?= Date: Fri, 12 Apr 2019 16:52:39 +0200 Subject: [PATCH] Fix: public doesn't deserve my kindness --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 90fd2fe..bb7e5d2 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: 'public' }) + 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' }) } }) ) \ No newline at end of file