Avoid error if extra parameter is not set

This commit is contained in:
nathangray
2020-03-31 10:21:26 -06:00
parent d9ecc966bb
commit d24c6f2b7d
3 changed files with 8 additions and 1 deletions

View File

@ -1607,6 +1607,9 @@ var EgwApp = /** @class */ (function () {
if (typeof _files === 'undefined' && _action.parent && _action.parent.getActionById('shareFiles')) {
_files = _action.parent.getActionById('shareFiles').checked || false;
}
if (typeof _extra === 'undefined') {
_extra = {};
}
return egw.json('EGroupware\\Api\\Sharing::ajax_create', [_action.id, path, _writable, _files, _extra], _callback ? _callback : this._share_link_callback, this, true, this).sendRequest();
};
EgwApp.prototype.share_merge = function (_action, _senders, _target) {