foxhound 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foxhound",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "A Database Query generation library.",
5
5
  "main": "source/FoxHound.js",
6
6
  "scripts": {
@@ -100,7 +100,8 @@ var FoxHound = function()
100
100
  _Parameters.result = ({
101
101
  executed: false, // True once we've run a query.
102
102
  value: false, // The return value of the last query run
103
- error: false // The error message of the last run query
103
+ // Updated below due to changes in how Async.js responds to a false value here
104
+ error: undefined // The error message of the last run query
104
105
  });
105
106
 
106
107
  return this;