From ce3235814905bab3d8e9342e313444a1d56e4027 Mon Sep 17 00:00:00 2001 From: milaq Date: Sat, 17 Aug 2019 23:56:51 +0200 Subject: [PATCH] Radiobrowser: Reduce default station limit Let's assume nobody wants to get 1000 stations by default. Also takes some load off the Radiobrowser API. --- ycast/radiobrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ycast/radiobrowser.py b/ycast/radiobrowser.py index 518e0e7..faf5271 100644 --- a/ycast/radiobrowser.py +++ b/ycast/radiobrowser.py @@ -6,7 +6,7 @@ import ycast.vtuner as vtuner MINIMUM_COUNT_GENRE = 5 MINIMUM_COUNT_COUNTRY = 5 MINIMUM_BITRATE = 64 -DEFAULT_STATION_LIMIT = 1000 +DEFAULT_STATION_LIMIT = 200 ID_PREFIX = "RB_"