gluon-core: 200-wireless simplify if conditions
Signed-off-by: Jan-Tarek Butt <tarek@ring0.de>
This commit is contained in:
parent
04b87dc1ca
commit
94f5bd23b9
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user