summary refs log tree commit diff
diff options
context:
space:
mode:
authormyk bilokonsky <mbilokonsky@gmail.com>2017-04-10 03:22:51 +0200
committermyk bilokonsky <mbilokonsky@gmail.com>2017-04-10 03:22:51 +0200
commit98e1aef9d8185ac0b06ecdaab070c9693d48c988 (patch)
tree88044f8ad60d1285a07b2d29758ddd8352e7c088
parent6675cdba20752fd36cc4ef25617e7495044c3847 (diff)
cleanup
-rw-r--r--index.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/index.js b/index.js
index 0c2039c..b53ef73 100644
--- a/index.js
+++ b/index.js
@@ -44,14 +44,12 @@ function cycle() {
     });
   });
 }
-var api_url = process.env.INSTANCE_HOST + '/api/v1';
-console.log('Now initializing mastodon API with token', process.env.AMBASSADOR_TOKEN, 'and api url', api_url);
+
 var M = new mastodon({
   access_token: process.env.AMBASSADOR_TOKEN,
-  api_url: api_url
+  api_url: process.env.INSTANCE_HOST
 });
 
-
 var boosted = {};
 function boost(rows) {
   rows.map(function(row) {
@@ -68,7 +66,7 @@ function boost(rows) {
           return console.log('Warning: tried to boost #' + id + ' but it had already been boosted by this account. Adding to cache.');
         }
 
-        return console.error(err);
+        return console.log(err);
       }
       boosted[id] = true;
       console.log('boosted status #' + id);