mirror of https://github.com/aredn/aredn.git
bugfix: fix call to getFrequency() to getFreq() in api (#408)
getFrequency() becomes getFreq()
This commit is contained in:
parent
1a43b07293
commit
71325a91d2
|
@ -70,7 +70,7 @@ function getStatusMeshRF()
|
|||
info['channel']=aredn_info.getChannel(info['device'])
|
||||
info['chanbw']=aredn_info.getChannelBW(info['device'])
|
||||
info['band']=aredn_info.getBand(info['device'])
|
||||
info['frequency']=aredn_info.getFrequency(info['device'])
|
||||
info['frequency']=aredn_info.getFreq(info['device'])
|
||||
return info
|
||||
end
|
||||
|
||||
|
@ -339,4 +339,4 @@ end
|
|||
json_header()
|
||||
|
||||
-- Output the info table as json
|
||||
print(json.stringify(info,true))
|
||||
print(json.stringify(info,true))
|
||||
|
|
Loading…
Reference in New Issue