fix: [UI matches extractor] fix empty matches

ocr
terrtia 2024-03-28 09:47:53 +01:00
parent 5fce682541
commit f37111fe2b
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 3 additions and 2 deletions

View File

@ -242,6 +242,7 @@ def extract(obj_type, subtype, obj_id, content=None):
extracted = extracted + matches
# SORT By Start Pos
if extracted:
extracted = sorted(extracted, key=itemgetter(0))
extracted = merge_overlap(extracted)