Skip to content
Snippets Groups Projects
Unverified Commit 2db05cb1 authored by Juraj Kusnier's avatar Juraj Kusnier Committed by GitHub
Browse files

ignore AlreadyRedeemedException (#3537)

parent c7728f42
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@ class TestRegistrationStateProcessor @Inject constructor(
coronaTest
} catch (err: Exception) {
stateInternal.value = State.Error(exception = err)
if (err !is CwaWebException) {
if (err !is CwaWebException && err !is AlreadyRedeemedException) {
err.report(ExceptionCategory.INTERNAL)
}
null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment