Skip to content

Commit

Permalink
Fixed bug where in some cases callbacks were not called
Browse files Browse the repository at this point in the history
  • Loading branch information
kober32 committed Oct 3, 2023
1 parent 44f0a41 commit c271df0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# and limitations under the License.
#

VERSION_NAME=1.0.1-SNAPSHOT
VERSION_NAME=1.0.2-SNAPSHOT
GROUP_ID=com.wultra.android.digitalonboarding
ARTIFACT_ID=wultra-digital-onboarding
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ class VerificationService(
override fun onActivationStatusSucceed(status: ActivationStatus?) {
if (status?.state != ActivationStatus.State_Active) {
listener?.powerAuthActivationStatusChanged(this@VerificationService, status)
markCompleted(Fail(ApiError(ActivationNotActiveException)), callback)
}
markCompleted(Fail(ApiError(ActivationNotActiveException)), callback)
}

override fun onActivationStatusFailed(t: Throwable) {
Expand Down

0 comments on commit c271df0

Please sign in to comment.