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.
2 parents 4e30766 + 160ca16 commit a9b8edcCopy full SHA for a9b8edc
intercom-java/src/main/java/io/intercom/api/Conversation.java
@@ -265,6 +265,10 @@ public long getUpdatedAt() {
265
}
266
267
public ConversationPartCollection getConversationPartCollection() {
268
+ if (conversationPartCollection == null || conversationPartCollection.getPage().isEmpty()) {
269
+ this.conversationPartCollection = find(this.getId()).getConversationPartCollection();
270
+ }
271
+
272
return conversationPartCollection;
273
274
0 commit comments