diff options
-rw-r--r-- | collections/luci-lib-docker/luasrc/docker.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/collections/luci-lib-docker/luasrc/docker.lua b/collections/luci-lib-docker/luasrc/docker.lua index cd9bf132d1..346b0ef235 100644 --- a/collections/luci-lib-docker/luasrc/docker.lua +++ b/collections/luci-lib-docker/luasrc/docker.lua @@ -21,7 +21,7 @@ local chunksource = function(sock, buffer) local output local _, endp, count = buffer:find("^([0-9a-fA-F]+)\r\n") - if not count then + while not count do local newblock, code = sock:recv(1024) if not newblock then return nil, code |