We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16badb0 commit 8a86f1fCopy full SHA for 8a86f1f
intercom-java/src/main/java/io/intercom/api/Conversation.java
@@ -265,8 +265,8 @@ public long getUpdatedAt() {
265
}
266
267
public ConversationPartCollection getConversationPartCollection() {
268
- if (conversationPartCollection == null || conversationPartCollection.getPage().isEmpty()) {
269
- this.conversationPartCollection = find(this.getId()).getConversationPartCollection();
+ if (conversationPartCollection == null) {
+ conversationPartCollection = find(this.getId()).getConversationPartCollection();
270
271
272
return conversationPartCollection;
0 commit comments