Fixes issue when settings number of tables of 0

powerreport
Laurent 3 years ago
parent 89effc942f
commit b66f67be23
  1. 6
      app/src/main/java/net/pokeranalytics/android/model/realm/Session.kt

@ -294,8 +294,10 @@ open class Session : RealmObject(), Savable, RowUpdatable, RowRepresentable, Tim
// The number of tables played at the same time
var numberOfTables: Int = 1
set(value) {
field = value
this.computeStats()
if (value > 0) {
field = value
this.computeStats()
}
}
// The hand histories of the session

Loading…
Cancel
Save