We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4481946 commit f071ffdCopy full SHA for f071ffd
mati/resources/verifications.py
@@ -82,7 +82,7 @@ def proof_of_residency_document(self) -> Optional[VerificationDocument]:
82
def proof_of_life_document(self) -> Optional[Liveness]:
83
if not self.steps:
84
return None
85
- pol = [pol for pol in self.steps if pol.id == 'liveness']
+ pol = [pol for pol in self.steps if (pol.id == 'liveness' or pol.id == 'selfie')]
86
return pol[-1] if pol else None
87
88
@property
mati/version.py
@@ -1 +1 @@
1
-__version__ = '2.0.7'
+__version__ = '2.0.8.dev1'
0 commit comments