Fixing toasty bug. (#412)

Fixing toasty bug.

Co-authored-by: opyale <example@example.com>
Reviewed-on: https://gitea.com/gitnex/GitNex/pulls/412
Reviewed-by: 6543 <6543@noreply.gitea.io>
This commit is contained in:
opyale 2020-04-14 22:41:40 +00:00 committed by 6543
parent 9cbcb1f87b
commit 13dbbe3ec7
5 changed files with 40 additions and 15 deletions

View File

@ -108,13 +108,18 @@ public class ExploreRepositoriesAdapter extends RecyclerView.Adapter<ExploreRepo
if(response.isSuccessful()) {
assert response.body() != null;
tinyDb.putBoolean("repoWatch", response.body().getSubscribed());
}
else {
} else {
tinyDb.putBoolean("repoWatch", false);
Toasty.info(context, context.getString(R.string.genericApiStatusError));
if(response.code() != 404) {
Toasty.info(context, context.getString(R.string.genericApiStatusError));
}
}

View File

@ -101,13 +101,18 @@ public class MyReposListAdapter extends RecyclerView.Adapter<MyReposListAdapter.
if(response.isSuccessful()) {
assert response.body() != null;
tinyDb.putBoolean("repoWatch", response.body().getSubscribed());
}
else {
} else {
tinyDb.putBoolean("repoWatch", false);
Toasty.info(context, context.getString(R.string.genericApiStatusError));
if(response.code() != 404) {
Toasty.info(context, context.getString(R.string.genericApiStatusError));
}
}

View File

@ -108,13 +108,18 @@ public class ReposListAdapter extends RecyclerView.Adapter<ReposListAdapter.Repo
if(response.isSuccessful()) {
assert response.body() != null;
tinyDb.putBoolean("repoWatch", response.body().getSubscribed());
}
else {
} else {
tinyDb.putBoolean("repoWatch", false);
Toasty.info(context, context.getString(R.string.genericApiStatusError));
if(response.code() != 404) {
Toasty.info(context, context.getString(R.string.genericApiStatusError));
}
}

View File

@ -105,13 +105,18 @@ public class RepositoriesByOrgAdapter extends RecyclerView.Adapter<RepositoriesB
if(response.isSuccessful()) {
assert response.body() != null;
tinyDb.putBoolean("repoWatch", response.body().getSubscribed());
}
else {
} else {
tinyDb.putBoolean("repoWatch", false);
Toasty.info(context, context.getString(R.string.genericApiStatusError));
if(response.code() != 404) {
Toasty.info(context, context.getString(R.string.genericApiStatusError));
}
}

View File

@ -105,13 +105,18 @@ public class StarredReposListAdapter extends RecyclerView.Adapter<StarredReposLi
if(response.isSuccessful()) {
assert response.body() != null;
tinyDb.putBoolean("repoWatch", response.body().getSubscribed());
}
else {
} else {
tinyDb.putBoolean("repoWatch", false);
Toasty.info(context, context.getString(R.string.genericApiStatusError));
if(response.code() != 404) {
Toasty.info(context, context.getString(R.string.genericApiStatusError));
}
}