bugfix: fix call to getFrequency() to getFreq() in api (#408)

getFrequency() becomes getFreq()
This commit is contained in:
Eric 2019-05-01 19:07:30 -07:00 committed by dman776
parent 1a43b07293
commit 71325a91d2
1 changed files with 2 additions and 2 deletions

View File

@ -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))