knownasilya/ember-plupload

Computer properties in uploader service not updated

schwabix opened this issue · 2 comments

I injected the uploader service in my controller but its properties didn't get updated. I tracked it down to the findOrCreate function in the /addon/services/uploader.js file

get(this, 'all').push(queue);

should be

get(this, 'all').pushObject(queue);

With the change applied everything works like a charm.

Oooh! Good catch 👍

That was fast - thank you