Browse Source

Change status code.

pull/14/head
Mushegh Sahakyan 4 years ago
parent
commit
261a4a86fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ui/src/main/java/com/wireguard/android/repository/DataRepository.java

+ 1
- 1
ui/src/main/java/com/wireguard/android/repository/DataRepository.java View File

@@ -475,7 +475,7 @@ public class DataRepository {
liveData.postMutableLiveData(StatusResource.error(NO_INTERNET_CONNECTION)); liveData.postMutableLiveData(StatusResource.error(NO_INTERNET_CONNECTION));
} }
if(throwable instanceof HttpException){ if(throwable instanceof HttpException){
if(((HttpException) throwable).code() == 404){
if(((HttpException) throwable).code() == 500){
final String requestURL = ((HttpException) throwable).response().raw().request().url().toString(); final String requestURL = ((HttpException) throwable).response().raw().request().url().toString();
final String requestMethod = ((HttpException) throwable).response().raw().request().method(); final String requestMethod = ((HttpException) throwable).response().raw().request().method();
final String requestBody = bodyToString(((HttpException) throwable).response().raw().request()); final String requestBody = bodyToString(((HttpException) throwable).response().raw().request());


Loading…
Cancel
Save