You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v1.5.2
Two issues:
I intermittently get a thenable back from Request w/no .then method?
r = new Request.JSON({url: 'https://someplace.net/api/'})
Object {$chain: Array[0], $events: F, options: Object, $caller: null, $family: null…}
r.then
undefined
When it accepts the .then, neither callback applied ever gets called?
r = new Request({url: ..., onFailure: ...);
r.then(success, failure); // neither gets called even on a 200 response
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/38800465-perplexing-request-thenable-then-behavior?utm_campaign=plugin&utm_content=tracker%2F22067&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F22067&utm_medium=issues&utm_source=github).
The text was updated successfully, but these errors were encountered:
I think there is a mixup somewhere, Class.Thenable was introduced in 1.6.0. So if you're using 1.5.2, the Request.JSON classes won't inherit from the Class.Thenable mixin since it doesn't exist yet.
Could you check again? Could it be that multiple versions are loaded and a race condition makes for the inconsistent behaviour?
v1.5.2
Two issues:
I intermittently get a thenable back from Request w/no .then method?
When it accepts the .then, neither callback applied ever gets called?
The text was updated successfully, but these errors were encountered: