Skip to content

Commit

Permalink
fix: [qrcode extractor] fix empty qreader
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Oct 2, 2024
1 parent 7cf3c2c commit ef93254
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/modules/QrCodeReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ def compute(self, message):
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:
Expand Down

0 comments on commit ef93254

Please sign in to comment.