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

Function isStep9RecoverableAuthError

background/logging-status.js:89–93  ·  view source on GitHub ↗
(error)

Source from the content-addressed store, hash-verified

87 }
88
89 function isStep9RecoverableAuthError(error) {
90 const message = String(typeof error === 'string' ? error : error?.message || '');
91 return /STEP9_OAUTH_RETRY::/i.test(message)
92 || isRecoverableStep9AuthFailure(message);
93 }
94
95 function isLegacyStep9RecoverableAuthError(error) {
96 const message = String(typeof error === 'string' ? error : error?.message || '');

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected