Computer properties in uploader service not updated
schwabix opened this issue · 2 comments
schwabix commented
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.
tim-evans commented
Oooh! Good catch 👍
schwabix commented
That was fast - thank you