diff --git a/app/src/main/java/net/pokeranalytics/android/model/realm/handhistory/HandHistory.kt b/app/src/main/java/net/pokeranalytics/android/model/realm/handhistory/HandHistory.kt index d3f2f132..18cd5bd7 100644 --- a/app/src/main/java/net/pokeranalytics/android/model/realm/handhistory/HandHistory.kt +++ b/app/src/main/java/net/pokeranalytics/android/model/realm/handhistory/HandHistory.kt @@ -240,6 +240,12 @@ open class HandHistory : RealmObject(), RowRepresentable, Identifiable, Filterab string = string.plus(firstLineComponents.joinToString(" - ")) string = string.addLineReturn(2) + // Comment + this.comment?.let { comment -> + string = string.plus(comment) + string = string.addLineReturn(2) + } + // Players this.playerSetups.sortedBy { it.position }.forEach { string = string.plus(localizedPlayerSetup(it, positions, context))