|
|
|
@ -416,7 +416,9 @@ open class Session : RealmObject(), SessionInterface, Manageable, StaticRowRepre |
|
|
|
fun getGameTitle(): String { |
|
|
|
fun getGameTitle(): String { |
|
|
|
var gameTitle = "" |
|
|
|
var gameTitle = "" |
|
|
|
limit?.let { |
|
|
|
limit?.let { |
|
|
|
gameTitle += Limit.values()[it].shortName + " " |
|
|
|
if (it >= 0 && it < Limit.values().size) { |
|
|
|
|
|
|
|
gameTitle += Limit.values()[it].shortName + " " |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (game != null) { |
|
|
|
if (game != null) { |
|
|
|
gameTitle += game?.name |
|
|
|
gameTitle += game?.name |
|
|
|
|