livedesk 0.1.610 → 0.1.612

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -465,8 +465,10 @@ export function normalizeRemoteClipboardCommandResult(action, operationId, value
465
465
  response.manifest = normalizeRemoteClipboardManifest(result.manifest, operationId);
466
466
  response.kind = response.manifest.contentKind;
467
467
  } else {
468
- const kind = result.contentKind || result.kind;
469
- if (kind) response.kind = normalizeContentKind(kind);
468
+ const explicitContentKind = String(result.contentKind || '').trim().toLowerCase();
469
+ const legacyKind = String(result.kind || '').trim().toLowerCase();
470
+ if (explicitContentKind) response.kind = normalizeContentKind(explicitContentKind);
471
+ else if (['text', 'image', 'files'].includes(legacyKind)) response.kind = legacyKind;
470
472
  }
471
473
  for (const key of ['receivedBytes', 'totalBytes']) {
472
474
  if (result[key] !== undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livedesk",
3
- "version": "0.1.610",
3
+ "version": "0.1.612",
4
4
  "livedeskClientVersion": "0.1.262",
5
5
  "buildFlavor": "production",
6
6
  "description": "VuvoDesk Hub and client launcher",
@@ -4,7 +4,7 @@
4
4
  "short_name": "VuvoDesk",
5
5
  "description": "Monitor and control your VuvoDesk computers from your phone.",
6
6
  "lang": "en",
7
- "start_url": "/app?pwa=0.1.608",
7
+ "start_url": "/app?pwa=0.1.612",
8
8
  "scope": "/",
9
9
  "display": "standalone",
10
10
  "orientation": "any",