use of com.fanap.podchat.mainmodel.ThreadInfoVO in project pod-chat-android-sdk by FanapSoft.
the class ChatCore method updateThreadImage.
private void updateThreadImage(ResultThread thread, RequestUploadImage uploadImageRequest) {
ThreadInfoVO threadInfoVO = new ThreadInfoVO.Builder().title(thread.getThread().getTitle()).description(thread.getThread().getDescription()).image(thread.getThread().getImage()).metadata(thread.getThread().getMetadata()).build();
updateThreadInfo(thread.getThread().getId(), threadInfoVO, thread.getThread().getUserGroupHash(), uploadImageRequest, null);
}
Aggregations