From c081486eca9d6ea31eb20d65490f95c01bdc9f64 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Thu, 18 Aug 2022 00:56:18 +0000 Subject: [PATCH] dashboard: increase limits --- server/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/app.py b/server/app.py index 1f4f37e..4306d85 100644 --- a/server/app.py +++ b/server/app.py @@ -223,8 +223,8 @@ def timedelta(seconds: int) -> str: @flask_app.route("/") def dashboard(): # config - pinned_limit = 10 - media_limit = 10 + pinned_limit = 16 + media_limit = 24 # for links from pinned collections pinned_collections: Iterable[MediaCollection] = orm.select( m for m in MediaCollection if m.pinned and not m.ignored