mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-24 06:35:39 +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)
|
end)
|
||||||
|
|
||||||
if ok then
|
if ok then
|
||||||
dprint("\t", result, "\n")
|
dprint("\t", result)
|
||||||
resolve(HttpResponse.new(result))
|
resolve(HttpResponse.new(result))
|
||||||
else
|
else
|
||||||
reject(HttpError.fromErrorString(result))
|
reject(HttpError.fromErrorString(result))
|
||||||
@@ -44,7 +44,7 @@ function Http.post(url, body)
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
if ok then
|
if ok then
|
||||||
dprint("\t", result, "\n")
|
dprint("\t", result)
|
||||||
resolve(HttpResponse.new(result))
|
resolve(HttpResponse.new(result))
|
||||||
else
|
else
|
||||||
reject(HttpError.fromErrorString(result))
|
reject(HttpError.fromErrorString(result))
|
||||||
|
|||||||
Reference in New Issue
Block a user