jurisv / nodejs.extdirect

Ext.Direct connector for node.js (npm module)
41 stars 16 forks source link

Fixed issue when returning boolean false #33

Closed cpmoser closed 9 years ago

cpmoser commented 9 years ago

When returning the boolean false value from a server api method, the router is substituting a default object instead (looks like it was looking for an undefined value, but the value false will trigger this substitution). I think there are cases where the false value should be returned to the client, so this change will fix that.

jurisv commented 9 years ago

Change incorporated

cpmoser commented 9 years ago

Great - thanks!