test #74

Merged
klaus merged 10 commits from test into main 2023-11-09 11:18:20 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 75140a4055 - Show all commits

View File

@ -57,7 +57,10 @@ class AuthService(
val certificateYear = certificate.birth.substring(0, 4).toInt() val certificateYear = certificate.birth.substring(0, 4).toInt()
if (isBlockAuth(certificate)) { if (isBlockAuth(certificate)) {
signOut(memberId = memberId) try {
signOut(memberId = memberId)
} catch (_: Exception) {
}
throw SodaException(blockMessage) throw SodaException(blockMessage)
} }