diff --git a/app/src/main/java/org/mian/gitnex/viewmodels/OrganizationLabelsViewModel.java b/app/src/main/java/org/mian/gitnex/viewmodels/OrganizationLabelsViewModel.java index 8c33042f..1340b08c 100644 --- a/app/src/main/java/org/mian/gitnex/viewmodels/OrganizationLabelsViewModel.java +++ b/app/src/main/java/org/mian/gitnex/viewmodels/OrganizationLabelsViewModel.java @@ -28,7 +28,7 @@ public class OrganizationLabelsViewModel extends ViewModel { public LiveData> getOrgLabelsList(String token, String owner, Context ctx, ProgressBar progressBar, TextView noData) { orgLabelsList = new MutableLiveData<>(); - loadOrgLabelsList(token, owner, ctx, progressBar = null, noData = null); + loadOrgLabelsList(token, owner, ctx, progressBar, noData); return orgLabelsList; }