From 6120d73609c8eaaac2ae1b757fc6fd2ff4c51dce Mon Sep 17 00:00:00 2001 From: Helvio Junior Date: Sun, 26 Jan 2025 22:22:44 -0300 Subject: [PATCH] BugFix --- filecrawler/libs/containerfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filecrawler/libs/containerfile.py b/filecrawler/libs/containerfile.py index fba58ce..0e60219 100644 --- a/filecrawler/libs/containerfile.py +++ b/filecrawler/libs/containerfile.py @@ -124,7 +124,7 @@ def extract_sqlite3(self) -> bool: 'table': t['table_name'], 'offset': cnt, 'total': total, - 'data': rows[cnt: cnt + 1000] + 'data': rows[cnt: cnt + 100] } cnt += len(d_tmp['data']) n1 = Tools.sanitize_filename(t['table_name'])