fix removing broken radio stations from fav
This commit is contained in:
parent
a6e5a2c4bb
commit
b36d7f2677
@ -1,3 +1,8 @@
|
||||
## 0.6.4 – 2018-XX
|
||||
### Fixed
|
||||
- Fix issue removing broken radio stations from fav
|
||||
[#76](https://git.project-insanity.org/onny/nextcloud-app-radio/issues/76) @onny
|
||||
|
||||
## 0.6.3 – 2018-09-08
|
||||
### Fixed
|
||||
- Fix table size issues for mobile clients
|
||||
|
@ -157,7 +157,7 @@ var MODULE = (function (radio) {
|
||||
}
|
||||
};
|
||||
|
||||
$('tbody').append('<tr data-src='+station['url']+' data-id='+station['id']+'>\
|
||||
$('tbody').append('<tr data-src="'+station['url']+'" data-id="'+station['id']+'">\
|
||||
<td class="favcolumn">\
|
||||
<a href="#" class="favorite">\
|
||||
<span class="icon-stationfav ' + isstarred + '"></span>\
|
||||
@ -191,6 +191,7 @@ var MODULE = (function (radio) {
|
||||
$('#emptycontent').removeClass('hidden');
|
||||
$('.loading').addClass('hidden');
|
||||
} else {
|
||||
console.log(stations);
|
||||
radio.query_stations(stations);
|
||||
};
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user