MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / isStep9RecoverableAuthError

Function isStep9RecoverableAuthError

background.js:3630–3634  ·  view source on GitHub ↗
(error)

Source from the content-addressed store, hash-verified

3628}
3629
3630function isStep9RecoverableAuthError(error) {
3631 const message = String(typeof error === 'string' ? error : error?.message || '');
3632 return /STEP9_OAUTH_RETRY::/i.test(message)
3633 || isRecoverableStep9AuthFailure(message);
3634}
3635
3636function isLegacyStep9RecoverableAuthError(error) {
3637 const message = String(typeof error === 'string' ? error : error?.message || '');

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected