feature/top10
Aurelien Hubert 7 years ago
parent dd61c806c0
commit 61153ade7d
  1. 2
      app/src/main/java/net/pokeranalytics/android/model/realm/Game.kt

@ -68,7 +68,7 @@ open class Game : RealmObject(), Manageable, StaticRowRepresentableDataSource, R
override fun updateValue(value: Any?, row: RowRepresentable) {
when (row) {
SimpleRow.NAME -> this.name = value as String? ?: ""
GameRow.SHORT_NAME -> this.shortName = value as String
GameRow.SHORT_NAME -> this.shortName = value as String? ?: ""
}
}

Loading…
Cancel
Save