@@ -344,21 +344,21 @@ export class FileUploader {
344
344
} ;
345
345
xhr . onload = ( ) => {
346
346
const headers = this . _parseHeaders ( xhr . getAllResponseHeaders ( ) ) ;
347
- const response = this . _transformResponse ( xhr . response , headers ) ;
347
+ const response = this . _transformResponse ( xhr . response ) ;
348
348
const gist = this . _isSuccessCode ( xhr . status ) ? 'Success' : 'Error' ;
349
349
const method = `_on${ gist } Item` ;
350
350
( this as any ) [ method ] ( item , response , xhr . status , headers ) ;
351
351
this . _onCompleteItem ( item , response , xhr . status , headers ) ;
352
352
} ;
353
353
xhr . onerror = ( ) => {
354
354
const headers = this . _parseHeaders ( xhr . getAllResponseHeaders ( ) ) ;
355
- const response = this . _transformResponse ( xhr . response , headers ) ;
355
+ const response = this . _transformResponse ( xhr . response ) ;
356
356
this . _onErrorItem ( item , response , xhr . status , headers ) ;
357
357
this . _onCompleteItem ( item , response , xhr . status , headers ) ;
358
358
} ;
359
359
xhr . onabort = ( ) => {
360
360
const headers = this . _parseHeaders ( xhr . getAllResponseHeaders ( ) ) ;
361
- const response = this . _transformResponse ( xhr . response , headers ) ;
361
+ const response = this . _transformResponse ( xhr . response ) ;
362
362
this . _onCancelItem ( item , response , xhr . status , headers ) ;
363
363
this . _onCompleteItem ( item , response , xhr . status , headers ) ;
364
364
} ;
@@ -446,7 +446,7 @@ export class FileUploader {
446
446
return ( status >= 200 && status < 300 ) || status === 304 ;
447
447
}
448
448
449
- protected _transformResponse ( response : string , headers : ParsedResponseHeaders ) : string {
449
+ protected _transformResponse ( response : string ) : string {
450
450
return response ;
451
451
}
452
452
0 commit comments