fix(devices): keep the existing device name on re-pair and re-login

A dedupe-keyed client re-mint (QR rescan, password/passkey re-login) replaces
the stored record, which also reset the operator-visible name to the app's
hardcoded default ('OpenChamber Mobile'). The app-reported name is now only a
fallback: an explicit pairing label wins, otherwise the replaced record's
label is kept, and the default applies only to a first-ever pairing.
This commit is contained in:
Bohdan Triapitsyn
2026-08-24 14:03:18 +03:00
parent 5fa6f2c159
commit 3aa45805bc
6 changed files with 43 additions and 13 deletions
+2 -2
View File
@@ -839,7 +839,7 @@ export const createUiAuth = ({
let clientTokenResult = null;
if (req.body?.issueClientToken === true && typeof clientAuthController?.createClient === 'function') {
clientTokenResult = await clientAuthController.createClient({
label: req.body?.clientLabel,
fallbackLabel: req.body?.clientLabel,
expiresAt: new Date(Date.now() + ttlMs).toISOString(),
clientKind: req.body?.clientKind,
dedupeKey: req.body?.dedupeKey,
@@ -907,7 +907,7 @@ export const createUiAuth = ({
let clientTokenResult = null;
if (req.body?.issueClientToken === true && typeof clientAuthController?.createClient === 'function') {
clientTokenResult = await clientAuthController.createClient({
label: req.body?.clientLabel,
fallbackLabel: req.body?.clientLabel,
expiresAt: new Date(Date.now() + ttlMs).toISOString(),
clientKind: req.body?.clientKind,
dedupeKey: req.body?.dedupeKey,
@@ -269,7 +269,7 @@ describe('ui auth client credential seam', () => {
token: 'client-token',
client: {
id: 'device-1',
label: input.label,
label: input.label ?? input.fallbackLabel,
createdAt: new Date().toISOString(),
lastUsedAt: null,
revokedAt: null,
@@ -295,7 +295,7 @@ describe('ui auth client credential seam', () => {
await auth.handleSessionCreate(req, res);
expect(res.body.clientToken).toBe('client-token');
expect(createClientInput.label).toBe('OpenChamber Desktop');
expect(createClientInput.fallbackLabel).toBe('OpenChamber Desktop');
const expiresAt = Date.parse(createClientInput.expiresAt);
expect(expiresAt).toBeGreaterThanOrEqual(before + 122_000);
expect(expiresAt).toBeLessThanOrEqual(Date.now() + 124_000);