This commit is contained in:
2026-01-22 11:05:40 -08:00
parent 874939a65b
commit 2ae651c225
7 changed files with 106 additions and 108 deletions

View File

@@ -161,7 +161,7 @@ def update_medios_config(hydrus_path: Path) -> bool:
try:
import sqlite3
import json
with sqlite3.connect(str(db_path)) as conn:
with sqlite3.connect(str(db_path), timeout=30.0) as conn:
conn.row_factory = sqlite3.Row
cur = conn.cursor()