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

@ -2011,6 +2011,10 @@ export abstract class EgwApp
{
_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();