From e233a7a3496cebca5efa28d0ce0e5459f1f84b81 Mon Sep 17 00:00:00 2001 From: thewesker Date: Sat, 18 Jun 2016 03:06:58 -0400 Subject: [PATCH] Fixed the logging when tweets go out --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index cbd7ff5..93d2d39 100644 --- a/app.js +++ b/app.js @@ -112,7 +112,7 @@ T.post('media/upload', { media_data: b64content }, function (err, data, response T.post('media/metadata/create', meta_params, function (err, data, response) { if (!err) { // now we can reference the media and post a tweet (media will attach to the tweet) - var params = {in_reply_to_status_id: nameID, status: '@' + name + " " randomhulkmessage, media_ids: [mediaIdStr] } + var params = {in_reply_to_status_id: nameID, status: '@' + name + " " + randomhulkmessage, media_ids: [mediaIdStr] } T.post('statuses/update', params, function (err, data, response) { console.log("Replied to Hulk's Tweet with " + randomhulkmessage)