getNowplaying - фикс двойного слеш в запросе

This commit is contained in:
Norbaev 2024-06-27 14:28:36 +05:00
parent 23d25d25fa
commit 69122bae1e
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ export default class extends REST {
} }
static getNowplaying(station, params) { static getNowplaying(station, params) {
return this._get('/radio/song/get_nowplaying/', params, {}) return this._get('radio/song/get_nowplaying', params, {})
.then((data) => { .then((data) => {
return data; return data;
}) })