mirror of https://github.com/openclaw/openclaw.git
build: finalize 2026.3.23 release
This commit is contained in:
parent
b98f3634c4
commit
f698774324
|
|
@ -2,14 +2,6 @@
|
|||
|
||||
Docs: https://docs.openclaw.ai
|
||||
|
||||
## Unreleased
|
||||
|
||||
### Breaking
|
||||
|
||||
### Changes
|
||||
|
||||
### Fixes
|
||||
|
||||
## 2026.3.23
|
||||
|
||||
### Breaking
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ export function isMissingOperatorReadScopeError(err: unknown): boolean {
|
|||
if (!(err instanceof GatewayRequestError)) {
|
||||
return false;
|
||||
}
|
||||
const detailCode = resolveGatewayErrorDetailCode(err);
|
||||
// AUTH_UNAUTHORIZED is the current server signal for scope failures in RPC responses.
|
||||
// The message-based fallback below catches cases where no detail code is set.
|
||||
if (detailCode === ConnectErrorDetailCodes.AUTH_UNAUTHORIZED) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue