knownasilya/ember-plupload

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

trampos opened this issue · 4 comments

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.

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"

@trampos did you find a solution to this issue ?

@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

@trampos I ended up doing the same 👍