tournament feature

feature/top10
Razmig Sarkissian 7 years ago
parent d37ccef5c3
commit 14b9ae4a01
  1. 4
      app/src/main/java/net/pokeranalytics/android/model/realm/Session.kt

@ -806,7 +806,9 @@ open class Session : RealmObject(), SessionInterface, Manageable, StaticRowRepre
} }
SessionRow.TOURNAMENT_NAME -> tournamentName = value as TournamentName? SessionRow.TOURNAMENT_NAME -> tournamentName = value as TournamentName?
SessionRow.TOURNAMENT_TYPE -> tournamentType = value as Int? SessionRow.TOURNAMENT_TYPE -> tournamentType = value as Int?
SessionRow.TOURNAMENT_FEATURE -> tournamentFeatures = value as RealmList<TournamentFeature> SessionRow.TOURNAMENT_FEATURE -> value?.let {
tournamentFeatures.add(value as TournamentFeature)
}
} }
realm.commitTransaction() realm.commitTransaction()
} }

Loading…
Cancel
Save