Comparing version 0.1.7 to 0.1.8
@@ -49,3 +49,3 @@ var $__Object = Object, $__getOwnPropertyNames = $__Object.getOwnPropertyNames, $__getOwnPropertyDescriptor = $__Object.getOwnPropertyDescriptor, $__getDescriptors = function(object) { | ||
this._port = port; | ||
this._prefix = prefix; | ||
this._prefix = prefix || ''; | ||
this._webhookURL = 'https://' + host + '/1/projects/' + projectID + '/queues/{queueName}/messages/webhook?oauth=' + token; | ||
@@ -52,0 +52,0 @@ this._queues = Object.create({}); |
{ | ||
"name": "ironium", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "test": "./node_modules/.bin/mocha", |
@@ -52,3 +52,3 @@ const _ = require('lodash'); | ||
// Prefix used in certain environment, e.g. "test-" | ||
this._prefix = prefix; | ||
this._prefix = prefix || ''; | ||
// Base URL for all Webhooks, queues set their name via interoplation. | ||
@@ -55,0 +55,0 @@ this._webhookURL = 'https://' + host + '/1/projects/' + projectID + |
46956