fix: fixed issue where cancelling requests was throwing an error (#146)

This commit is contained in:
Anoop M D 2023-04-20 11:19:12 +05:30
parent 8e0bc68ada
commit 86094cc054
2 changed files with 12 additions and 0 deletions

View File

@ -122,6 +122,12 @@ export const sendRequest = (item, collectionUid) => (dispatch, getState) => {
response: null
})
);
if(err && err.message === "Error invoking remote method 'send-http-request': Error: Request cancelled") {
console.log('>> request cancelled');
return;
}
console.log('>> sending request failed');
console.log(err);
toast.error(err ? err.message : 'Something went wrong!');

View File

@ -202,6 +202,12 @@ const registerNetworkIpc = (mainWindow, watcher, lastOpenedCollections) => {
// need to convey the error to the UI
// and need not be always a network error
deleteCancelToken(cancelTokenUid);
if (axios.isCancel(error)) {
let error = new Error("Request cancelled");
error.isCancel = true;
return Promise.reject(error);
}
if(error.response) {
return {