knownasilya / ember-plupload

Ember component for handling uploads using plupload
MIT License
87 stars 53 forks source link

Location header is downcased from response in OSX Chrome Version 60.0.3112.90 (Official Build) (64-bit) #118

Open trampos opened 7 years ago

trampos commented 7 years ago

Iv just tested in this version. After the upload, the response.headers object comes with the Location attribute lowercased.

I dont know if its a ember-plupload bug, and started happening after the last Chrome update.

tim-evans commented 7 years ago

Hi there, I don't have time to look at this, and don't really maintain this too much anymore. If you provide more details, community members may be able to help you.

As a courtesy, describing your ticket as "URGENT" is less helpful than saying "Location header missing from response in Chrome X.X.X"

MZein1292 commented 7 years ago

@trampos did you find a solution to this issue ?

trampos commented 7 years ago

@MZein1292, iv fixed my app changing the way i get the location

from: let docurl = response.headers.Location

to: let docurl = response.headers.Location || response.headers.location

MZein1292 commented 6 years ago

@trampos I ended up doing the same :+1: