Browse Source

Remove If-None-Match header. Fixes #595 (#596)

pull/581/head
Leo Anthias 6 years ago committed by Sergi Almacellas Abellana
parent
commit
6672789905
  1. 1
      papaparse.js

1
papaparse.js

@ -651,7 +651,6 @@ if (!Array.isArray)
{ {
var end = this._start + this._config.chunkSize - 1; // minus one because byte range is inclusive var end = this._start + this._config.chunkSize - 1; // minus one because byte range is inclusive
xhr.setRequestHeader('Range', 'bytes=' + this._start + '-' + end); xhr.setRequestHeader('Range', 'bytes=' + this._start + '-' + end);
xhr.setRequestHeader('If-None-Match', 'webkit-no-cache'); // https://bugs.webkit.org/show_bug.cgi?id=82672
} }
try { try {

Loading…
Cancel
Save