diff --git a/CHANGELOG.md b/CHANGELOG.md index 79225c6..e6bfb19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/js/main.js b/js/main.js index 904a204..0f562b1 100644 --- a/js/main.js +++ b/js/main.js @@ -157,7 +157,7 @@ var MODULE = (function (radio) { } }; - $('tbody').append('\ + $('tbody').append('\ \ \ \ @@ -191,6 +191,7 @@ var MODULE = (function (radio) { $('#emptycontent').removeClass('hidden'); $('.loading').addClass('hidden'); } else { + console.log(stations); radio.query_stations(stations); }; });