test if cb exists
Signed-off-by: Clark Wang <clark.wangs@gmail.com>
This commit is contained in:
parent
b204367aa6
commit
7a3e254403
|
@ -677,7 +677,7 @@ Model.nestRemoting = function(relationName, options, cb) {
|
|||
try {
|
||||
nestedFn.apply(inst, args);
|
||||
} catch (err) {
|
||||
cb(err);
|
||||
cb && cb(err);
|
||||
}
|
||||
} else if (cb) {
|
||||
cb(err, null);
|
||||
|
@ -695,7 +695,7 @@ Model.nestRemoting = function(relationName, options, cb) {
|
|||
try {
|
||||
nestedFn.apply(inst, args);
|
||||
} catch (err) {
|
||||
cb(err);
|
||||
cb && cb(err);
|
||||
}
|
||||
} else if (cb) {
|
||||
cb(err, null);
|
||||
|
|
Loading…
Reference in New Issue