From 74b1ecf2cf7066ad93268e48a1062a3788a90338 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 26 Jan 2026 09:05:46 -0500 Subject: [PATCH] fix typo for storage stats interface --- backend/app/api/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/settings.py b/backend/app/api/settings.py index b7d6972..0ac0575 100644 --- a/backend/app/api/settings.py +++ b/backend/app/api/settings.py @@ -16,7 +16,7 @@ bp = Blueprint("settings", __name__) def get_storage_stats(): """Calculate storage statistics for the downloads directory.""" config = get_settings() - downloads_path = Path(config.downloads_path) + downloads_path = Path(config.download_path) if not downloads_path.exists(): return {"total_size": 0, "total_size_formatted": "0 B", "file_count": 0}