mirror of https://github.com/CIRCL/AIL-framework
fix: [qrcode extractor] fix empty qreader
parent
7cf3c2c865
commit
ef932545b2
|
@ -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 New Issue