Fix clear Game in Session

feature/top10
Aurelien Hubert 7 years ago
parent a986a6030e
commit f902448fb0
  1. 3
      app/src/main/java/net/pokeranalytics/android/model/realm/Session.kt

@ -549,6 +549,9 @@ open class Session : RealmObject(), SessionInterface, Savable,
} catch (e: Exception) {
null
}
} else if (value == null) {
limit = null
game = null
}
}
SessionRow.INITIAL_BUY_IN -> tournamentEntryFee = if (value == null) null else (value as String).toDouble()

Loading…
Cancel
Save