Skip to content

Commit

Permalink
BugFix
Browse files Browse the repository at this point in the history
  • Loading branch information
helviojunior committed Jul 18, 2024
1 parent ea41b27 commit 32e5fe0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion filecrawler/crawlerbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,6 @@ def process_file(self, db: CrawlerDB, file: File):
CrawlerBase.ignored += 1
else:
self.integrate(**data)
CrawlerBase.integrated += 1

integrated = 1
b64_data = ''
Expand All @@ -636,6 +635,8 @@ def process_file(self, db: CrawlerDB, file: File):
if 'locked' in str(e):
time.sleep(1)

CrawlerBase.integrated += integrated

if Configuration.verbose >= 3:
Color.pl('{*} {GR}finishing processor for %s{W}' % file.path_virtual)

Expand Down

0 comments on commit 32e5fe0

Please sign in to comment.