Skip to content
Snippets Groups Projects
Commit d17b7720 authored by onny's avatar onny
Browse files

fix loading favorites

parent 5fd2656d
No related branches found
No related tags found
No related merge requests found
......@@ -232,6 +232,7 @@ $(function(){
function action_load_favorites(){
var stations = []
var baseUrl = OC.generateUrl('/apps/radio');
$.get(baseUrl + '/stations', function ( data ) {
for (var station in data) {
stations.push(data[station]["stationid"]);
......@@ -248,18 +249,22 @@ $(function(){
function query_stations(station_ids){
var station_array = [];
for (stationid in station_ids){
station_ids.forEach(function (station_id, idx) {
$.ajax({
method: "GET",
url: "https://www.radio-browser.info/webservice/json/stations/byid/"+station_ids[stationid],
url: "https://www.radio-browser.info/webservice/json/stations/byid/"+station_ids[idx],
dataType: 'json',
}).success( function(data){
station_array = station_array.concat(data);
if (station_array.length == station_ids.length){
if (station_ids.length == (idx+1)){
render_results(station_array);
};
});
};
});
};
function radio_query(type, query){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment