This commit is contained in:
SpudGunMan
2025-10-28 19:50:11 -07:00
parent eadc843e27
commit 206b72ec4f
+4 -1
View File
@@ -245,8 +245,11 @@ def get_overdue_checkins():
})
return overdue_list
except Exception as e:
except sqlite3.OperationalError as e:
conn.close()
if "no such table" in str(e):
initialize_checklist_database()
return get_overdue_checkins()
logger.error(f"Checklist: Error getting overdue check-ins: {e}")
return []