Skip to content
This repository was archived by the owner on Feb 21, 2026. It is now read-only.

Commit 24c6c40

Browse files
Merge pull request #103 from InkApplications/fix-passcodes
Fix for passcode validation
2 parents 47c581f + 680e389 commit 24c6c40

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

android-application/src/main/java/com/inkapplications/ack/android/settings/license/LicensePromptValidator.kt

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,7 @@ class LicensePromptValidator @Inject constructor(
3838
}
3939
data == null -> null
4040
converted != actual -> stringResources.getString(R.string.connection_setting_passcode_incorrect)
41-
else -> stringResources.getString(R.string.unknown_error).also {
42-
logger.debug("Field Validation: $fieldValidation")
43-
logger.debug("Converted: $converted")
44-
logger.debug("Input Validation: $inputValidation")
45-
logger.debug("Data: $data")
46-
logger.debug("Actual: $actual")
47-
logger.error("Unexpected error validating passcode.")
48-
}
41+
else -> null
4942
}
5043
}
5144

0 commit comments

Comments
 (0)