bajo 2.6.1 → 2.6.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/class/bajo.js +1 -1
- package/package.json +1 -1
- package/wiki/CHANGES.md +4 -0
package/class/bajo.js
CHANGED
|
@@ -548,7 +548,7 @@ class Bajo extends Plugin {
|
|
|
548
548
|
* @returns {function} Class method
|
|
549
549
|
*/
|
|
550
550
|
getMethod = (name = '', thrown = true) => {
|
|
551
|
-
const { ns, path } = this.breakNsPath(name)
|
|
551
|
+
const { ns, path } = this.breakNsPath(name, thrown)
|
|
552
552
|
const method = get(this.app, `${ns}.${path}`)
|
|
553
553
|
if (method && isFunction(method)) return method
|
|
554
554
|
if (thrown) throw this.error('cantFindMethod%s', name)
|
package/package.json
CHANGED