#5 Added ability to get a quick overview of all of the product stats on one page.

This commit is contained in:
2024-02-02 16:42:19 +00:00
parent d09d597905
commit 8f0e995471
3 changed files with 24 additions and 4 deletions

View File

@ -29,7 +29,7 @@ class StatsController(DatabaseController):
cursor = self._conn.execute(
"SELECT * FROM Views",
)
rows = cursor.fetchmany()
rows = cursor.fetchall()
if rows is None:
return None