diff --git a/src/gallia/db/handler.py b/src/gallia/db/handler.py index 747de9cee..2853f8496 100644 --- a/src/gallia/db/handler.py +++ b/src/gallia/db/handler.py @@ -301,6 +301,7 @@ async def insert_discovery_result(self, target: str) -> None: query = "INSERT INTO discovery_result(address, run) VALUES ((SELECT id FROM address WHERE url = ?), ?)" await self.connection.execute(query, (target, self.discovery_run)) + await self.connection.commit() async def insert_scan_result( # noqa: PLR0913 self,