diff --git a/src/db.rs b/src/db.rs index b18a21f..c2ceff8 100644 --- a/src/db.rs +++ b/src/db.rs @@ -552,6 +552,12 @@ mod db_impl { let mut conn = self.conn.lock().await; let tx = conn.transaction()?; + // Insert URL if it does not exists + tx.execute( + "INSERT OR IGNORE INTO urls (url) VALUES (?)", + [url] + )?; + // Get URL ID let url_id = tx.query_row( "SELECT id FROM urls WHERE url = ?",