mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-26 07:47:17 +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
|
return None
|
||||||
|
|
||||||
for content in contents:
|
for content in contents:
|
||||||
|
if not content:
|
||||||
|
continue
|
||||||
print(content)
|
print(content)
|
||||||
qr_code = QrCodes.create(content, self.obj) # copy screenshot + image daterange
|
qr_code = QrCodes.create(content, self.obj) # copy screenshot + image daterange
|
||||||
if not qr_code:
|
if not qr_code:
|
||||||
|
|
Loading…
Reference in a new issue