hubot 11.1.2 → 11.1.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Robot.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hubot",
3
- "version": "11.1.2",
3
+ "version": "11.1.4",
4
4
  "author": "hubot",
5
5
  "keywords": [
6
6
  "github",
package/src/Robot.mjs CHANGED
@@ -229,7 +229,7 @@ class Robot {
229
229
  }
230
230
 
231
231
  this.listen(isCatchAllMessage, options, async msg => {
232
- await callback(msg.message)
232
+ await callback(msg)
233
233
  })
234
234
  }
235
235