We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5848ba commit ed0c873Copy full SHA for ed0c873
apps/server/src/provider/Layers/OpenClawGatewayClient.ts
@@ -445,7 +445,7 @@ function buildConnectParams(input: {
445
deviceToken: input.auth.value,
446
}
447
: undefined;
448
- const signatureToken = input.auth.kind === "deviceToken" ? input.auth.value : undefined;
+ const signatureToken = input.auth.kind !== "none" ? input.auth.value : undefined;
449
return {
450
minProtocol: OPENCLAW_PROTOCOL_VERSION,
451
maxProtocol: OPENCLAW_PROTOCOL_VERSION,
0 commit comments