Use text responseType

pull/6827/head
Oliver Günther 6 years ago
parent 91b358c8bc
commit 5195793a3d
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 2
      frontend/module/avatar-upload-form/avatar-upload-form.component.ts

@ -84,7 +84,7 @@ export class AvatarUploadFormComponent implements OnInit {
public uploadAvatar(evt:Event) {
evt.preventDefault();
this.busy = true;
const upload = this.opFileUpload.uploadSingle(this.target, this.avatarFile, this.method);
const upload = this.opFileUpload.uploadSingle(this.target, this.avatarFile, this.method, 'text');
this.notificationsService.addWorkPackageUpload(this.text.uploading, [upload]);
upload[1].subscribe(

Loading…
Cancel
Save