Merge pull request #2142 from nextcloud/bugfix/2123/continueWithoutUserStatus

fix to load conversation list (restricted user status)
This commit is contained in:
Marcel Hibbe 2022-06-15 16:37:23 +02:00 committed by GitHub
commit c9be148223
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -543,13 +543,13 @@ public class ConversationsListController extends BaseController implements Flexi
@Override
public void onError(@io.reactivex.annotations.NonNull Throwable e) {
Log.e(TAG, "failed to fetch user statuses", e);
fetchRooms();
}
@Override
public void onComplete() {
}
});
}
private void fetchRooms() {

View file

@ -233,6 +233,7 @@ public class ChooseAccountDialogFragment extends DialogFragment {
@Override
public void onError(@NonNull Throwable e) {
Log.e(TAG, "Can't receive user status from server. ", e);
binding.statusView.setVisibility(View.GONE);
}
@Override