We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e569e1 commit 6809c66Copy full SHA for 6809c66
src/sentry/static/sentry/app/api.jsx
@@ -64,6 +64,9 @@ export class Client {
64
*/
65
hasProjectBeenRenamed(response) {
66
let code = response && idx(response, _ => _.responseJSON.detail.code);
67
+
68
+ // XXX(billy): This actually will never happen because we can't intercept the 302
69
+ // jQuery ajax will follow the redirect by default...
70
if (code !== PROJECT_MOVED) return false;
71
72
let slug = response && idx(response, _ => _.responseJSON.detail.extra.slug);
0 commit comments