|
|
|
@ -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() |
|
|
|
} |
|
|
|
} |
|
|
|
|