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
Copy file name to clipboardExpand all lines: AndroidSDKCore/src/main/java/com/leanplum/internal/RequestSender.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -143,16 +143,16 @@ public void sendRequests() {
143
143
intstatusCode = op.getResponseCode();
144
144
145
145
if (statusCode >= 200 && statusCode <= 299) {
146
-
if (MigrationManager.refreshStateMidSession(responseBody)) { // TODO if current multi response contains getMigrateState this line would cause a second call, because getMigrateState response wouldn't be parsed yet
147
-
Log.i("Migration state will be refreshed.");
148
-
}
149
-
150
146
if (RequestUtil.updateApiConfig(responseBody)) {
151
147
// API config is changed and we need to send requests again
152
148
sendRequests();
153
149
return;
154
150
}
155
151
152
+
if (MigrationManager.refreshStateMidSession(responseBody)) {
0 commit comments