mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 21:25:16 +00:00
Remove line break in HTTP debug output that studio messes up anyways
This commit is contained in:
@@ -25,7 +25,7 @@ function Http.get(url)
|
||||
end)
|
||||
|
||||
if ok then
|
||||
dprint("\t", result, "\n")
|
||||
dprint("\t", result)
|
||||
resolve(HttpResponse.new(result))
|
||||
else
|
||||
reject(HttpError.fromErrorString(result))
|
||||
@@ -44,7 +44,7 @@ function Http.post(url, body)
|
||||
end)
|
||||
|
||||
if ok then
|
||||
dprint("\t", result, "\n")
|
||||
dprint("\t", result)
|
||||
resolve(HttpResponse.new(result))
|
||||
else
|
||||
reject(HttpError.fromErrorString(result))
|
||||
|
||||
Reference in New Issue
Block a user