From 3c35f4c4efa221b69ef0d2d45fd3ae5603741c94 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Fri, 13 Mar 2026 18:30:49 -0700 Subject: [PATCH] Show iOS version next to device name Co-Authored-By: Claude Opus 4.6 (1M context) --- server.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index 2570025..36569bc 100644 --- a/server.js +++ b/server.js @@ -514,7 +514,11 @@ async function extractMetadata(buf) { } else if (exif.Image?.Model) { items.push(["Camera", String(exif.Image.Model)]); } - if (exif.Image?.HostComputer) items.push(["Device", String(exif.Image.HostComputer)]); + if (exif.Image?.HostComputer) { + let device = String(exif.Image.HostComputer); + if (exif.Image?.Software) device += `, iOS ${exif.Image.Software}`; + items.push(["Device", device]); + } if (exif.Photo?.LensModel) items.push(["Lens", String(exif.Photo.LensModel)]); if (exif.Photo?.ImageUniqueID) items.push(["Unique ID", String(exif.Photo.ImageUniqueID)]);