Skip to content

Commit

Permalink
fix client recv_package (#1977)
Browse files Browse the repository at this point in the history
  • Loading branch information
julywind168 authored Sep 14, 2024
1 parent b1bb84d commit 8900360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ local function recv_package(last)
if r == "" then
error "Server closed"
end
return unpack_package(last .. r)
return recv_package(last .. r)
end

local session = 0
Expand Down

0 comments on commit 8900360

Please sign in to comment.