mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-12 17:48:22 +00:00
fix: [qrcode extractor] fix empty qreader
This commit is contained in:
parent
7cf3c2c865
commit
ef932545b2
1 changed files with 2 additions and 0 deletions
|
@ -112,6 +112,8 @@ class QrCodeReader(AbstractModule):
|
|||
return None
|
||||
|
||||
for content in contents:
|
||||
if not content:
|
||||
continue
|
||||
print(content)
|
||||
qr_code = QrCodes.create(content, self.obj) # copy screenshot + image daterange
|
||||
if not qr_code:
|
||||
|
|
Loading…
Reference in a new issue