mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 10:58:23 -05:00
Explain strange redirect behavior
This commit is contained in:
parent
815c4b3f57
commit
68bcbf7511
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,8 @@ var Api = {
|
||||||
}
|
}
|
||||||
xhr(opts, function (err, res, body) {
|
xhr(opts, function (err, res, body) {
|
||||||
if (err) log.error(err);
|
if (err) log.error(err);
|
||||||
|
// Legacy API responses come as lists, and indicate to redirect the client like
|
||||||
|
// [{success: true, redirect: "/location/to/redirect"}]
|
||||||
if (body && body[0] && 'redirect' in body[0]) window.location = body[0].redirect;
|
if (body && body[0] && 'redirect' in body[0]) window.location = body[0].redirect;
|
||||||
callback(err, body);
|
callback(err, body);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue