Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
fix: don't swallow errors in outreach (#1929)
Browse files Browse the repository at this point in the history
Just something I noticed while looking at code
  • Loading branch information
asdfryan committed Nov 16, 2023
1 parent 2946966 commit b08964d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/core/remotes/impl/outreach/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1434,6 +1434,7 @@ class OutreachClient extends AbstractEngagementRemoteClient {
if (e.response?.status === 400) {
throw new SGConnectionNoLongerAuthenticatedError('Unable to refresh access token. Refresh token invalid.');
}
throw e;
}
}
}
Expand Down

0 comments on commit b08964d

Please sign in to comment.