Skip to content

Commit

Permalink
[x64] Delimit all POST logging with \r\n\r\n
Browse files Browse the repository at this point in the history
Quark server expects payload to end in two newlines.
Delimit all POST requests so that the server can parse
them properly.

Signed-off-by: Nicholas Tsirakis <[email protected]>
  • Loading branch information
Nicholas Tsirakis committed Feb 11, 2019
1 parent d79a689 commit 36ac81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/script/lib/debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ XenClient.UI.Debug = (function() {

XUIXhr.post(
"/log/0",
"UI: " + message,
"UI: " + message + "\r\n\r\n",
null,
null,
{
Expand Down

0 comments on commit 36ac81b

Please sign in to comment.