refactor: drop usage of _.get

This commit is contained in:
Justin Beckwith 2018-11-15 15:21:24 -08:00
parent fd082c642d
commit b3a78f59de
1 changed files with 1 additions and 1 deletions

View File

@ -646,7 +646,7 @@ function getCall(channel, path, options) {
if (options) {
deadline = options.deadline;
host = options.host;
parent = _.get(options, 'parent.call');
parent = options.parent ? options.parent.call : undefined;
propagate_flags = options.propagate_flags;
credentials = options.credentials;
}