Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/lib/Network.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ function processNetworkRequestQueue() {
// 2. Getting a 200 response back from the API (happens right below)

// Make a simple request every second to see if the API is online again
request('Get', null)
request('Get', {doNotRetry: true})
.then(() => Ion.merge(IONKEYS.NETWORK, {isOffline: false}))
.then(() => isAppOffline = false);
return;
}
Expand Down