mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-21 13:31:02 +02:00
Avoid error if extra parameter is not set
This commit is contained in:
@@ -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) {
|
||||
|
@@ -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();
|
||||
|
Reference in New Issue
Block a user