Update engine.py

This commit is contained in:
2026-01-20 13:27:41 +01:00
parent ce7abd8a29
commit 48417b6d73

View File

@@ -35,7 +35,7 @@ class SorterEngine:
# Seed categories if empty
cursor.execute("SELECT COUNT(*) FROM categories")
if cursor.fetchone()[0] == 0:
for cat in ["_TRASH", "Default", "Action", "Solo"]:
for cat in ["_TRASH", "control", "Default", "Action", "Solo"]:
cursor.execute("INSERT OR IGNORE INTO categories VALUES (?)", (cat,))
conn.commit()