-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Closed
Labels
Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.
Description
When using fetch to make a get to an external api, and if debugging in chrome is active, then it never reaches the second "then" until there is an interaction with the UI, such as a tap on the screen, but if debugging is turned off then this problem goes away.
fetch(requestURL)
.then((res) => res.json())
.then((resData) => {
this.setState({
suggestions: resData.Similar.Results
});
})
.done()
Using React Native 0.22
Only occurs on Android (both Genymotion and on device (5.0))
Using a Mac
mb-dev, ncnlinh, clarle, mbernardeau, msathis and 31 more
Metadata
Metadata
Assignees
Labels
Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.