Fix TimeFrame

dev_raz_wip
Aurelien Hubert 7 years ago
parent 85591bc15a
commit 8e661c440a
  1. 2
      app/src/main/java/net/pokeranalytics/android/model/realm/TimeFrame.kt

@ -51,7 +51,7 @@ open class TimeFrame : RealmObject() {
@Ignore @Ignore
var session: Session? = null var session: Session? = null
//get() = this.sessions?.first() ?: null get() = if (this.sessions != null && this.sessions.isEmpty()) null else this.sessions?.first()
// Group // Group
@LinkingObjects("timeFrame") @LinkingObjects("timeFrame")

Loading…
Cancel
Save