Skip to content

Commit

Permalink
Merge branch 'release/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
aleechou committed Oct 11, 2013
2 parents 6c66eba + cb08a97 commit ccabd6f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions index.coffee
Expand Up @@ -45,16 +45,16 @@ module.exports = class
@sessionid = rspn.sessionId
@userId = rspn.userId
console.log 'got nonce & XISESSIONID:', @nonce, @xisessionid
cb null, this
cb && cb null, this
eval content
catch error
cb error
cb && cb error
catch error
cb error
cb && cb error
undefined

req.on 'err', (err)->
cb err
req.on 'error', (err)->
cb && cb err

keeplive: ->

Expand Down
10 changes: 5 additions & 5 deletions index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "xiaoi",
"version": "0.1.1",
"version": "0.1.2",
"description": "A xiaoi.com client for Node.js",
"main": "index.js",
"scripts": {
Expand All @@ -11,7 +11,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/aleechou/XiaoI.git#v0.1.1"
"url": "git://github.com/aleechou/XiaoI.git#v0.1.2"
},
"author": "aleechou",
"license": "MIT",
Expand Down

0 comments on commit ccabd6f

Please sign in to comment.