GetStream/stream-chat-java

Setting user invisible and online

KrunchMuffin opened this issue · 1 comments

I was told it was not possible to set a user invisible or on/offline with this SDK. That can't be true? If it is not correct, are there examples?

Hello,

You can try to use partialUpdate with something like

UserPartialUpdateRequestObject.builder()
            .id(user.getId())
            .setValue("invisible", false)