Merge pull request #2101 from 2tata/tata_200-wireless

gluon-core: 200-wireless simplify if conditions
This commit is contained in:
Martin Weinelt 2020-08-22 19:42:45 +02:00 committed by GitHub
commit e9462b5b82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -82,20 +82,20 @@ local function get_htmode(radio)
end
local function is_disabled(name)
if uci:get('wireless', name) then
return uci:get_bool('wireless', name, 'disabled')
else
if not uci:get('wireless', name) then
return nil
end
return uci:get_bool('wireless', name, 'disabled')
end
-- Returns the first argument that is not nil; don't call without any non-nil arguments!
local function first_non_nil(first, ...)
if first ~= nil then
return first
else
return first_non_nil(...)
end
return first_non_nil(...)
end