Acorn Eyes Posted April 6, 2019 Report Posted April 6, 2019 I'm using inspectItem in an array for loop, it seems like the callback is sometimes empty. Right now I'm using a setTimeout() function to delay each method by 1s, however I'd rather iterate through the for loop when the promise is fulfilled. Quote
Dr. McKay Posted April 7, 2019 Report Posted April 7, 2019 If it's empty then you're probably sending the request too quickly. Quote
Acorn Eyes Posted April 7, 2019 Author Report Posted April 7, 2019 If it's empty then you're probably sending the request too quickly.I figured, I'm just wondering why the callback only handles if there is one. if (callback) { this.once('inspectItemInfo#' + assetid, callback); } I would have expected a failed response if there isn't one. callback ? this.once('inspectItemInfo#' + assetid, callback) : return Null something like that. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.