From 48417b6d733c2f7a4cc9e0c41f766de3ec569748 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Tue, 20 Jan 2026 13:27:41 +0100 Subject: [PATCH] Update engine.py --- engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine.py b/engine.py index 813fcdc..cb0809b 100644 --- a/engine.py +++ b/engine.py @@ -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()