Skip to content

Commit

Permalink
luci-app-adblock: sync with adblock-4.2.2-6
Browse files Browse the repository at this point in the history
* adjust changed sources field in the online status

Signed-off-by: Dirk Brenken <[email protected]>
  • Loading branch information
dibdot committed Oct 10, 2024
1 parent 5840fec commit 02f2d47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ return view.extend({
if (sources && info) {
for (var i = 0; i < info.active_sources.length; i++) {
if (i < info.active_sources.length-1) {
src_array += info.active_sources[i].source + ', ';
src_array += info.active_sources[i] + ', ';
} else {
src_array += info.active_sources[i].source
src_array += info.active_sources[i]
}
}
sources.textContent = src_array || '-';
Expand Down

0 comments on commit 02f2d47

Please sign in to comment.