Changing message slightly

This commit is contained in:
Martijn de Boer 2018-09-08 12:46:17 +02:00
parent af611366b7
commit 2ea290cfed
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -50,7 +50,7 @@ function tootQuote(obj) {
{
console.log( 'Tooting: ' + obj.quote.text );
var cw = obj.quote.text;
var message = "from '" + obj.quote.track + "' on the album '" + obj.quote.album + "'\n" + obj.quote.track_master;
var message = "from '" + obj.quote.track + "' on the album '" + obj.quote.album + "'\n" + obj.quote.track_master + "\n#quote #scooter #bot";
m.post('statuses', { status: message, spoiler_text: cw, visibility: 'public' });
}
}