Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
muink committed Jan 25, 2023
1 parent da0d51f commit 064a2fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
include $(TOPDIR)/rules.mk

LUCI_NAME:=luci-app-netspeedtest
PKG_VERSION:=20230120
PKG_VERSION:=20230125

LUCI_TITLE:=LuCI Net Speedtest
LUCI_DEPENDS:=+iperf3 +librespeed-go +python3-speedtest-cli +ca-certificates
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ return view.extend({
o.inputstyle = 'apply';
o.depends('ookla_official', '1');
o.onclick = L.bind(function(ev, section_id) {
var arch=document.getElementById('widget.' + o.cbid(section_id).match(/.+\./) + '_arch').value;
var arch=document.getElementById('widget.' + this.cbid(section_id).match(/.+\./) + '_arch').value;
//alert(arch);
return fs.exec('/etc/init.d/netspeedtest', ['download_ookla', arch])
.catch(function(e) { ui.addNotification(null, E('p', e.message), 'error') });
Expand Down

0 comments on commit 064a2fb

Please sign in to comment.