GITLAB
wasteland
/
server
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
f871be670b96fa4165c21051b752aa16a6defd72
Authored by
zhouhaihai
2020-05-13 16:31:24 +0800
1 parent
a5486ede
返回值要是字符串
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/services/httpweb.lua
Inline
Side-by-side
src/services/httpweb.lua
Wrap text
Show/Hide comments
View file @
f871be6
...
...
@@ -82,7 +82,7 @@ local function start()
82
82
if not content then
83
83
code = 404
84
84
end
85
- response(id, code,
content
)
85
+ response(id, code,
tostring(content)
)
86
86
end
87
87
else
88
88
if url == sockethelper.socket_error then
...
...