mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
increase mix count to 15
This commit is contained in:
@@ -172,26 +172,26 @@ class MixesPlugin(Plugin):
|
|||||||
|
|
||||||
artists = {
|
artists = {
|
||||||
"today": {
|
"today": {
|
||||||
"max": 3,
|
"max": 4,
|
||||||
"artists": get_artists_in_period(today_start, today_end, userid),
|
"artists": get_artists_in_period(today_start, today_end, userid),
|
||||||
"created": 0,
|
"created": 0,
|
||||||
},
|
},
|
||||||
"last_2_days": {
|
"last_2_days": {
|
||||||
"max": 2,
|
"max": 3,
|
||||||
"artists": get_artists_in_period(
|
"artists": get_artists_in_period(
|
||||||
last_2_days_start, time.time(), userid
|
last_2_days_start, time.time(), userid
|
||||||
),
|
),
|
||||||
"created": 0,
|
"created": 0,
|
||||||
},
|
},
|
||||||
"last_7_days": {
|
"last_7_days": {
|
||||||
"max": 3,
|
"max": 4,
|
||||||
"artists": get_artists_in_period(
|
"artists": get_artists_in_period(
|
||||||
last_7_days_start, time.time(), userid
|
last_7_days_start, time.time(), userid
|
||||||
),
|
),
|
||||||
"created": 0,
|
"created": 0,
|
||||||
},
|
},
|
||||||
"last_1_month": {
|
"last_1_month": {
|
||||||
"max": 2,
|
"max": 4,
|
||||||
"artists": get_artists_in_period(
|
"artists": get_artists_in_period(
|
||||||
last_1_month_start, time.time(), userid
|
last_1_month_start, time.time(), userid
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user