* Filemanager: Fix unwanted, automatic comment "ask" when uploading to filemanager

This commit is contained in:
nathangray 2020-09-03 11:44:50 -06:00
parent 3ed5a6b587
commit b9e1f48db7
2 changed files with 2 additions and 2 deletions

View File

@ -305,7 +305,7 @@ var filemanagerAPP = /** @class */ (function (_super) {
var widget = _event.data;
var value = widget.getValue();
value.conflict = _conflict;
egw.json(_target, ['upload', value, _path, _conflict], this._upload_callback, this, true, this).sendRequest();
egw.json(_target, ['upload', value, _path], this._upload_callback, this, true, this).sendRequest();
widget.set_value('');
}
};

View File

@ -349,7 +349,7 @@ export class filemanagerAPP extends EgwApp
let widget = _event.data;
let value = widget.getValue();
value.conflict = _conflict;
egw.json(_target, ['upload', value, _path, _conflict],
egw.json(_target, ['upload', value, _path],
this._upload_callback, this, true, this
).sendRequest();
widget.set_value('');