We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5e47d8 commit 2c1fd48Copy full SHA for 2c1fd48
ControllerBuddy.lua
@@ -155,8 +155,8 @@ LuaExportActivityNextEvent = function(tCurrent)
155
client:send(tokenLine..'\n'..'INIT\n'..'-autostart\n'..'local\n'..'-profile\n'..profilePath..'\n'..'EOF\n')
156
157
local ackReceived = false
158
- for i = 1, 5 do
159
- local response, recvErr, partial = client:receive('*l')
+ for _ = 1, 5 do
+ local response, _, partial = client:receive('*l')
160
response = response or partial
161
if response == 'ACK' then
162
ackReceived = true
0 commit comments