Skip to content

Commit

Permalink
Fixing a few things and releasing v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Moak committed Sep 30, 2013
1 parent 30e3b5e commit 956d98b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ A Hubot adapter for [Jabbr](http://jabbr.net)

* Use version 0.2.x if you are using Hubot 2.3.x
* Use version 0.3.x if you are using Hubot 2.4.x
* Use version 0.4.x if you are using Hubot 2.6.x
* All other hubot versions are not supported

## Installation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hubot-jabbr",
"version": "0.3.0",
"version": "0.4.0",
"author": "Scott Moak <scott.moak@mybrainoncode.com>",
"description": "Jabbr adapter for Hubot 2.4+",
"main": "./src/jabbr.coffee",
Expand Down
2 changes: 1 addition & 1 deletion src/jabbr.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class JabbrBot extends Adapter
rooms: process.env.HUBOT_JABBR_ROOMS.split(',')
host: process.env.HUBOT_JABBR_HOST
password: process.env.HUBOT_JABBR_PASSWORD
transport: process.env.HUBOT_JABBR_TRANSPORT or "serverSentEvents"
transport: process.env.HUBOT_JABBR_TRANSPORT or "longPolling"


bot = new JabbrClient options.host, { transport: options.transport }
Expand Down

0 comments on commit 956d98b

Please sign in to comment.