From 24aa34807b165467c0a7d4231a7ecfdc9dcc5e67 Mon Sep 17 00:00:00 2001 From: cwilvx Date: Thu, 26 Dec 2024 20:03:36 +0300 Subject: [PATCH] increase mix count to 15 --- app/plugins/mixes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/plugins/mixes.py b/app/plugins/mixes.py index 5247f0e0..7bf316f3 100644 --- a/app/plugins/mixes.py +++ b/app/plugins/mixes.py @@ -172,26 +172,26 @@ class MixesPlugin(Plugin): artists = { "today": { - "max": 3, + "max": 4, "artists": get_artists_in_period(today_start, today_end, userid), "created": 0, }, "last_2_days": { - "max": 2, + "max": 3, "artists": get_artists_in_period( last_2_days_start, time.time(), userid ), "created": 0, }, "last_7_days": { - "max": 3, + "max": 4, "artists": get_artists_in_period( last_7_days_start, time.time(), userid ), "created": 0, }, "last_1_month": { - "max": 2, + "max": 4, "artists": get_artists_in_period( last_1_month_start, time.time(), userid ),