Check-in [51e6023978]
Overview
| Comment: | disable station inflation * 2 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
51e6023978750f51e18f43cd86ad1748 |
| User & Date: | mario on 2022-02-21 08:05:23 |
| Other Links: | manifest | tags |
Context
|
2022-02-21
| ||
| 08:05 | enable per default check-in: e551c04eff user: mario tags: trunk | |
| 08:05 | disable station inflation * 2 check-in: 51e6023978 user: mario tags: trunk | |
| 08:04 | document contrib channels, mor disabling check-in: afc61c15c3 user: mario tags: trunk | |
Changes
Modified channels/radiobrowser.py from [4c365e0c90] to [5b821599ee].
| ︙ | ︙ | |||
119 120 121 122 123 124 125 |
else:
data = self.api(
"stations/search",
{
self.tagmap[conf.radiobrowser_cat]: cat,
"hidebroken": "true",
"order": "click",
| | | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
else:
data = self.api(
"stations/search",
{
self.tagmap[conf.radiobrowser_cat]: cat,
"hidebroken": "true",
"order": "click",
"limit": conf.max_streams
}
)
#data = self.api("stations/" + self.catmap[conf.radiobrowser_cat] + "/" + cat)
if len(data) >= 5000:
data = data[0:5000]
self.status(0.75)
|
| ︙ | ︙ |