openclaw / src /pairing /pairing-labels.ts
quinnz's picture
change port 18789 to 7860
3509093
import { getPairingAdapter } from "../channels/plugins/pairing.js";
import type { PairingChannel } from "./pairing-store.js";
export function resolvePairingIdLabel(channel: PairingChannel): string {
return getPairingAdapter(channel)?.idLabel ?? "userId";
}