Skip to content

Commit

Permalink
fix crow.connected() always returning false (#1128)
Browse files Browse the repository at this point in the history
  • Loading branch information
csboling authored May 31, 2020
1 parent 75140d9 commit 66733fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/core/crow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function crow.send(cmd)
end
--- check if crow is connected
function crow.connected()
return _norns.crow.dev ~= nil
return norns.crow.dev ~= nil
end


Expand Down Expand Up @@ -122,7 +122,7 @@ end
local function action_string(v)
if type(v) ~= 'table' then
return v
end
end
local arg_string = ''
for _,arg in ipairs(v) do
if arg then
Expand Down

0 comments on commit 66733fb

Please sign in to comment.