Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ object Tools {
}

private fun isValidModel(model: String): Boolean {
// Hyphen이 하나만 있는지 확인
if (model.count { it == '-' } != 1) {
// Hyphen > 1 is invalid. Japanese KDDI models have no hyphen
if (model.count { it == '-' } > 1) {
return false
}

Expand Down