Merge pull request #762 from coreos-inc/api404

Do not redirect on API 404
This commit is contained in:
josephschorr 2015-11-03 12:24:43 -05:00
commit d99cf1b6fc

View file

@ -226,11 +226,6 @@ quayApp.run(['$location', '$rootScope', 'Restangular', 'UserService', 'PlanServi
return false;
}
if (response.status == 404) {
document.location = '/404';
return false;
}
return true;
});