diff --git a/android/src/com/google/android/apps/chrometophone/AppEngineClient.java b/android/src/com/google/android/apps/chrometophone/AppEngineClient.java index b73b8ba..808afb1 100644 --- a/android/src/com/google/android/apps/chrometophone/AppEngineClient.java +++ b/android/src/com/google/android/apps/chrometophone/AppEngineClient.java @@ -61,7 +61,7 @@ public class AppEngineClient { public HttpResponse makeRequest(String urlPath, List params) throws Exception { HttpResponse res = makeRequestNoRetry(urlPath, params, false); - if (res.getStatusLine().getStatusCode() == 500) { + if (res.getStatusLine().getStatusCode() == 500 || res.getStatusLine().getStatusCode() == 302) { res = makeRequestNoRetry(urlPath, params, true); } return res;