2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 10:15:32 +00:00

UserProfile

This commit is contained in:
Oliver Walters
2021-02-08 20:32:49 +11:00
parent b18daf3acf
commit b34a91b865
10 changed files with 460 additions and 44 deletions

View File

@ -227,10 +227,8 @@ class InvenTreeAPI {
errorMessage = "Server timeout";
return null;
} else {
// Unknown error type
errorMessage = error.toString();
// Unknown error type, re-throw error
return null;
// Unknown error type - re-throw the error and Sentry will catch it
throw error;
}
});